diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-08 13:18:49 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-08 13:18:49 +0000 |
commit | f0bd063132bfee8c31b44c2720e4ec3a9374436c (patch) | |
tree | a34acb6de2cbf59b4ceffe19ac5f410ee38a7cc4 /plugins/PluginUpdater/src/Options.cpp | |
parent | 7f9e16d477e88bc65bd5bc5aa1bbf6ae980f904b (diff) |
fix for 64-bit issue in PluginUpdater's options
git-svn-id: http://svn.miranda-ng.org/main/trunk@1815 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/Options.cpp')
-rw-r--r-- | plugins/PluginUpdater/src/Options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/Options.cpp b/plugins/PluginUpdater/src/Options.cpp index 422502cbaf..91fbfa80a5 100644 --- a/plugins/PluginUpdater/src/Options.cpp +++ b/plugins/PluginUpdater/src/Options.cpp @@ -51,7 +51,7 @@ INT_PTR CALLBACK UpdateNotifyOptsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPA SendDlgItemMessage(hwndDlg, IDC_PERIODSPIN, UDM_SETPOS, 0, (LPARAM)opts.Period);
Edit_LimitText(GetDlgItem(hwndDlg, IDC_PERIOD), 2);
- g_pOldProc = (WNDPROC)SetWindowLongPtr(GetDlgItem(hwndDlg, IDC_PERIOD), GWLP_WNDPROC, (LONG)MyEditProc);
+ g_pOldProc = (WNDPROC)SetWindowLongPtr(GetDlgItem(hwndDlg, IDC_PERIOD), GWLP_WNDPROC, (LPARAM)MyEditProc);
ComboBox_InsertString(GetDlgItem(hwndDlg, IDC_PERIODMEASURE), 0, TranslateT("hours"));
ComboBox_InsertString(GetDlgItem(hwndDlg, IDC_PERIODMEASURE), 1, TranslateT("days"));
|