diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-14 05:21:47 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-14 05:21:47 +0000 |
commit | 493982e975182de392d6f732bfa4e974605c4c83 (patch) | |
tree | 4113abea0b32f3cab4546d0408451ac69771f7a7 | |
parent | 15bf082d2a05a9e9bb36ce4c26d07d16cfc3981b (diff) |
- compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@4011 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/StatusChange/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/StatusChange/src/main.cpp b/plugins/StatusChange/src/main.cpp index 18e7802951..1b28339f68 100644 --- a/plugins/StatusChange/src/main.cpp +++ b/plugins/StatusChange/src/main.cpp @@ -113,7 +113,7 @@ static int StatusChangeGetMessage(WPARAM wParam, LPARAM lParam) return 0;
}
-static BOOL CALLBACK DlgProcStatusChangeOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
+static INT_PTR CALLBACK DlgProcStatusChangeOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg) {
case WM_INITDIALOG:
|