summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-12-17 15:17:51 +0100
committerinfirit <[email protected]>2014-12-17 17:23:02 +0100
commitb249cf780ab12125d8ac680879d24c4ce2e3a3fe (patch)
tree0039e5732da89a5138f143035aa946c2cb9adc11 /src
parent586315f06e56d10a8ab7e3fc2a7eada7f67e4d2a (diff)
downloadmate-system-monitor-b249cf780ab12125d8ac680879d24c4ce2e3a3fe.tar.bz2
mate-system-monitor-b249cf780ab12125d8ac680879d24c4ce2e3a3fe.tar.xz
Fix falsly reporting 'Unknown CPU model'
Taken from GSM commit: 3ef0ed45f91f09a05905e20863e854ee84573b73 From: Luciano Chavez <[email protected]> Gnome bug: https://bugzilla.gnome.org/show_bug.cgi?id=619733
Diffstat (limited to 'src')
-rw-r--r--src/sysinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysinfo.cpp b/src/sysinfo.cpp
index eaa58b8..a54aa89 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);
}