summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/options/options.cpp11
-rw-r--r--src/modules/plugins/pluginopts.cpp4
2 files changed, 7 insertions, 8 deletions
diff --git a/src/modules/options/options.cpp b/src/modules/options/options.cpp
index 7f800d05b3..f5ffc14c27 100644
--- a/src/modules/options/options.cpp
+++ b/src/modules/options/options.cpp
@@ -43,8 +43,6 @@ static int FilterPage = 0;
static int FilterLoadProgress = 100;
static int FilterTimerId = 0;
-extern bool bOldMode;
-
struct OptionsPageInit
{
int pageCount;
@@ -690,7 +688,7 @@ public:
if (msg == WM_INITDIALOG)
lParam = m_lParam;
- return CallWindowProc(m_wndProc, m_hwnd, msg, wParam, lParam);
+ return m_wndProc(m_hwnd, msg, wParam, lParam);
}
};
@@ -1320,16 +1318,15 @@ static int OptModulesLoaded(WPARAM, LPARAM)
mi.pszName = LPGEN("&Options...");
mi.pszService = "Options/OptionsCommand";
Menu_AddMainMenuItem(&mi);
-
- bOldMode = db_get_b(NULL, "Options", "OldPluginSettings", false) != 0;
return 0;
}
int ShutdownOptionsModule(WPARAM, LPARAM)
{
- if (IsWindow(hwndOptions))
+ if (IsWindow(hwndOptions)) {
DestroyWindow(hwndOptions);
- hwndOptions = NULL;
+ hwndOptions = NULL;
+ }
return 0;
}
diff --git a/src/modules/plugins/pluginopts.cpp b/src/modules/plugins/pluginopts.cpp
index bcd549ed1e..d6fba2df05 100644
--- a/src/modules/plugins/pluginopts.cpp
+++ b/src/modules/plugins/pluginopts.cpp
@@ -30,8 +30,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
extern MUUID miid_clist, miid_database, miid_protocol;
HANDLE hevLoadModule, hevUnloadModule;
-bool bOldMode = false;
+static bool bOldMode = false;
static CMString szFilter;
static UINT_PTR timerID;
@@ -562,6 +562,8 @@ int PluginOptionsInit(WPARAM wParam, LPARAM)
void LoadPluginOptions()
{
+ bOldMode = db_get_b(NULL, "Options", "OldPluginSettings", false) != 0;
+
hevLoadModule = CreateHookableEvent(ME_SYSTEM_MODULELOAD);
hevUnloadModule = CreateHookableEvent(ME_SYSTEM_MODULEUNLOAD);
}