summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/memory.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/sysinfo/memory.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sysinfo/memory.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/noncore/settings/sysinfo/memory.h b/noncore/settings/sysinfo/memory.h
index c2af948..f655604 100644
--- a/noncore/settings/sysinfo/memory.h
+++ b/noncore/settings/sysinfo/memory.h
@@ -17,48 +17,47 @@
** not clear to you.
**
**********************************************************************/
#ifndef MEMORY_H
#define MEMORY_H
#include <qwidget.h>
class GraphData;
class Graph;
class GraphLegend;
class QLabel;
class MemoryInfo : public QWidget
{
Q_OBJECT
public:
MemoryInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
~MemoryInfo();
unsigned long total;
unsigned long used;
unsigned long memfree;
- unsigned long shared;
unsigned long buffers;
unsigned long cached;
unsigned long realUsed;
unsigned long swaptotal;
unsigned long swapused;
unsigned long swapfree;
private slots:
void updateData();
private:
QLabel *totalMem;
GraphData *data;
Graph *graph;
GraphLegend *legend;
QLabel* swapMem;
GraphData *swapdata;
Graph *swapgraph;
GraphLegend *swaplegend;
};
#endif