summaryrefslogtreecommitdiffstats
path: root/kmix/KMixApp.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-09-16 23:34:21 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-09-16 23:34:21 +0900
commit00105125e3010438663b1355f6f1579476ee9510 (patch)
tree51e43d62f7c9900c007c92ad5e226bdc4bf9d4bc /kmix/KMixApp.h
parentf0e311f71b7f02fb20e5db21a297a2c4caee9153 (diff)
downloadtdemultimedia-00105125e3010438663b1355f6f1579476ee9510.tar.gz
tdemultimedia-00105125e3010438663b1355f6f1579476ee9510.zip
This is a temporary commit to save WIP done on this topic.feat/kmix/mixer-detection
Development of this feature will only resume after the release of R14.1.0. Relates to bug 3159. NOTE: this commit needs to be completed/reworked. It should not be merged to master as is. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmix/KMixApp.h')
-rw-r--r--kmix/KMixApp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/kmix/KMixApp.h b/kmix/KMixApp.h
index 7630e1f8..d48fc1b0 100644
--- a/kmix/KMixApp.h
+++ b/kmix/KMixApp.h
@@ -2,6 +2,7 @@
#define KMixApp_h
#include <kuniqueapplication.h>
+#include <tqtimer.h>
class KMixWindow;
@@ -12,9 +13,9 @@ Q_OBJECT
public:
KMixApp();
~KMixApp();
- int newInstance ();
+ int newInstance();
- public slots:
+ public slots:
void quitExtended(); // For a hack on visibility()
signals:
@@ -22,6 +23,7 @@ Q_OBJECT
private:
KMixWindow *m_kmix;
+ TQTimer *m_updateMixersTimer;
};
#endif