summaryrefslogtreecommitdiff
path: root/noncore/applets/memoryapplet/memorystatus.cpp
Unidiff
Diffstat (limited to 'noncore/applets/memoryapplet/memorystatus.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/memoryapplet/memorystatus.cpp31
1 files changed, 15 insertions, 16 deletions
diff --git a/noncore/applets/memoryapplet/memorystatus.cpp b/noncore/applets/memoryapplet/memorystatus.cpp
index b738312..c01ba28 100644
--- a/noncore/applets/memoryapplet/memorystatus.cpp
+++ b/noncore/applets/memoryapplet/memorystatus.cpp
@@ -28,3 +28,2 @@
28 28
29#include <opie/otabwidget.h>
30#include <qlayout.h> 29#include <qlayout.h>
@@ -43,3 +42,3 @@ MemoryStatus::MemoryStatus(QWidget *parent, WFlags f )
43 42
44 QLabel* about = new QLabel(tr("<center><b>Memory Monitor Plugin</b><br>" 43 QLabel* about = new QLabel(tr("<center><b>Memory Monitor Plugin</b><br>"
45 "Copyright (C) 2003 Anton Maslovsky<br>" 44 "Copyright (C) 2003 Anton Maslovsky<br>"
@@ -47,4 +46,4 @@ MemoryStatus::MemoryStatus(QWidget *parent, WFlags f )
47 "<a href=\"http://my-zaurus.narod.ru\">http://my-zaurus.narod.ru</a><br>" 46 "<a href=\"http://my-zaurus.narod.ru\">http://my-zaurus.narod.ru</a><br>"
48 "Based on source code from:<br> qswap (udoseidel@gmx.de) <br> Battery Applet (trolltech.com) <br> SysInfo (OPIE)<br><br>" 47 "Based on source code from:<br> qswap (udoseidel@gmx.de) <br> Battery Applet (trolltech.com) <br> SysInfo (OPIE)<br><br>"
49 "This program is licensed under GNU GPL.</center>"), tab); 48 "This program is licensed under GNU GPL.</center>"), tab);
50 49
@@ -57,14 +56,14 @@ int MemoryStatus::percent()
57{ 56{
58 if (mi == 0) 57 if (mi == 0)
59 return 100; 58 return 100;
60 59
61 int total = mi->total; 60 int total = mi->total;
62 if (mi->swaptotal > 0) 61 if (mi->swaptotal > 0)
63 total += mi->swaptotal; 62 total += mi->swaptotal;
64 63
65 int used = mi->realUsed; 64 int used = mi->realUsed;
66 if (mi->swapused > 0) 65 if (mi->swapused > 0)
67 total += mi->swapused; 66 total += mi->swapused;
68 67
69 return ((total - used) * 100)/total; 68 return ((total - used) * 100)/total;
70} 69}
@@ -73,5 +72,5 @@ QSize MemoryStatus::sizeHint() const
73{ 72{
74 QSize s = tab->size(); 73 QSize s = tab->size();
75 s.setWidth(200); 74 s.setWidth(200);
76 s.setHeight((mi->swaptotal > 0) ? 220 : 200); 75 s.setHeight((mi->swaptotal > 0) ? 220 : 200);
77 return s; 76 return s;