Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mumble/GlobalShortcut_unix.h')
-rw-r--r--src/mumble/GlobalShortcut_unix.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mumble/GlobalShortcut_unix.h b/src/mumble/GlobalShortcut_unix.h
index e0ebab2a7..070aaeb3a 100644
--- a/src/mumble/GlobalShortcut_unix.h
+++ b/src/mumble/GlobalShortcut_unix.h
@@ -38,7 +38,7 @@ class GlobalShortcutX : public GlobalShortcutEngine {
public:
Display *display;
volatile bool bRunning;
- QList<QFile *> qlInputDevices;
+ QMap<QString, QFile *> qmInputDevices;
GlobalShortcutX();
~GlobalShortcutX();
@@ -46,4 +46,5 @@ class GlobalShortcutX : public GlobalShortcutEngine {
QString buttonName(const QVariant &);
public slots:
void inputReadyRead(int);
+ void directoryChanged(const QString &);
};