summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2016-11-22 19:49:08 +0300
committerGeorge Hazan <ghazan@miranda.im>2016-11-22 19:49:08 +0300
commit898f54c452241eeb6ee587fc23adff0f21b66e02 (patch)
tree65fa293c4523dcf9c317a0ee5a8fa252bba1adc4
parentc01381d4be42c0de9cddbb0980af0ee3adff4fb7 (diff)
wrong call of Options_Open
-rw-r--r--plugins/BasicHistory/src/HistoryWindow.cpp2
-rw-r--r--plugins/PluginUpdater/src/Utils.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/BasicHistory/src/HistoryWindow.cpp b/plugins/BasicHistory/src/HistoryWindow.cpp
index 6d19adbe61..14de1f2307 100644
--- a/plugins/BasicHistory/src/HistoryWindow.cpp
+++ b/plugins/BasicHistory/src/HistoryWindow.cpp
@@ -535,7 +535,7 @@ INT_PTR CALLBACK HistoryWindow::DlgProcHistory(HWND hwndDlg, UINT msg, WPARAM wP
DlgReturn(TRUE);
case IDM_CONFIG:
- Options_Open(LPGENW("History"));
+ Options_Open(NULL, LPGENW("History"));
DlgReturn(TRUE);
case IDM_DELETE:
diff --git a/plugins/PluginUpdater/src/Utils.cpp b/plugins/PluginUpdater/src/Utils.cpp
index 67fa42ee03..6513d66218 100644
--- a/plugins/PluginUpdater/src/Utils.cpp
+++ b/plugins/PluginUpdater/src/Utils.cpp
@@ -316,7 +316,7 @@ bool DownloadFile(FILEURL *pFileURL, HANDLE &nlc)
void __stdcall OpenPluginOptions(void*)
{
- Options_Open(L"Plugins");
+ Options_Open(NULL, L"Plugins");
}
// FUNCTION: IsRunAsAdmin()