aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/src-cpp/framework-OSInterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/src-cpp/framework-OSInterface.h')
-rw-r--r--src-qt5/src-cpp/framework-OSInterface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/src-cpp/framework-OSInterface.h b/src-qt5/src-cpp/framework-OSInterface.h
index c48fc9f8..a173ad5a 100644
--- a/src-qt5/src-cpp/framework-OSInterface.h
+++ b/src-qt5/src-cpp/framework-OSInterface.h
@@ -17,6 +17,7 @@
#include <QObject>
#include <QVariant>
#include <QHash>
+#include <QTimer>
#include <QIODevice>
#include <QFileSystemWatcher>
@@ -138,7 +139,6 @@ private slots:
void timerUpdate();
signals:
- void interfaceChanged(OSInterface::Interface);
void batteryChargeChanged();
void batteryChargingChanged();
void batterySecondsLeftChanged();
@@ -151,7 +151,7 @@ signals:
private:
//Internal persistant data storage, OS-specific usage implementation
- QHash< QString, QList<QVariant> > INFO;
+ QHash< QString, QVariant> INFO;
// ============
// Internal possibilities for watching the system (OS-Specific usage/implementation)
bgstack15