[gnome-system-monitor] Fix falsly reporting 'Unknown CPU model'.
- From: Chris Kühl <chriskuehl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-system-monitor] Fix falsly reporting 'Unknown CPU model'.
- Date: Wed, 2 Mar 2011 23:24:21 +0000 (UTC)
commit 3ef0ed45f91f09a05905e20863e854ee84573b73
Author: Luciano Chavez <lnx1138 linux vnet ibm com>
Date: Thu Mar 3 00:19:01 2011 +0100
Fix falsly reporting 'Unknown CPU model'.
https://bugzilla.gnome.org/show_bug.cgi?id=619733
src/sysinfo.cpp | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/sysinfo.cpp b/src/sysinfo.cpp
index 9377a7e..5f28e0c 100644
--- a/src/sysinfo.cpp
+++ b/src/sysinfo.cpp
@@ -113,7 +113,7 @@ namespace {
keys[j]));
if (!model)
- model = _("Unknown CPU model");
+ continue;
this->processors.push_back(model);
}
@@ -183,7 +183,7 @@ namespace {
{
xmlXPathObjectPtr xpath;
xpath = xmlXPathEvalExpression(BAD_CAST nodes[i].c_str(), context);
-
+
if (xpath and xpath->type == XPATH_STRING)
values[i] = reinterpret_cast<const char*>(xpath->stringval);
@@ -488,7 +488,7 @@ add_section(GtkBox *vbox , const char * title, int num_row, int num_col, GtkWidg
}
-static GtkWidget*
+static GtkWidget*
add_row(GtkTable * table, const char * label, const char * value, int row)
{
GtkWidget *header = gtk_label_new(label);
@@ -648,7 +648,7 @@ procman_create_sysinfo_view(void)
g_free(markup);
markup = procman::format_size(data->free_space_bytes);
- disk_space_label = add_row(GTK_TABLE(disk_space_table),
+ disk_space_label = add_row(GTK_TABLE(disk_space_table),
_("Available disk space:"), markup,
0);
g_free(markup);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]