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/Global.h')
-rw-r--r--src/mumble/Global.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mumble/Global.h b/src/mumble/Global.h
index 5aee1abf5..d8748bb51 100644
--- a/src/mumble/Global.h
+++ b/src/mumble/Global.h
@@ -22,7 +22,7 @@ class AudioInput;
class AudioOutput;
class Database;
class Log;
-class Plugins;
+class PluginManager;
class QSettings;
class Overlay;
class LCD;
@@ -53,7 +53,8 @@ public:
*/
Database *db;
Log *l;
- Plugins *p;
+ /// A pointer to the PluginManager that is used in this session
+ PluginManager *pluginManager;
QSettings *qs;
#ifdef USE_OVERLAY
Overlay *o;