diff options
Diffstat (limited to 'plugins/StatusManager/src/main.cpp')
-rw-r--r-- | plugins/StatusManager/src/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/StatusManager/src/main.cpp b/plugins/StatusManager/src/main.cpp index 12ea42189b..e1cdb19222 100644 --- a/plugins/StatusManager/src/main.cpp +++ b/plugins/StatusManager/src/main.cpp @@ -60,11 +60,13 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD) // interfaces MUUID Interfaces[2] = {0}; +MUUID miidAutoAway = MIID_AUTOAWAY; + MUUID* GetInterfaces(void) { if (IsSubPluginEnabled(AAAMODULENAME)) - Interfaces[0] = MIID_AUTOAWAY; + Interfaces[0] = miidAutoAway; return Interfaces; }; |