diff options
author | George Hazan <george.hazan@gmail.com> | 2016-06-01 11:02:25 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-06-01 11:02:25 +0000 |
commit | fd23c78f121f3f1d07d97d657c617b46b25c614f (patch) | |
tree | 6fc12a82ed0e537228e6c712d0c571afcdf10e1c /plugins/Clist_modern/src/modern_clui.cpp | |
parent | ea68d4474bb7329a5e59e0388b88155b96f31f7c (diff) |
- finally clist_modern's own rebuild all function got wiped out;
- massive removal of duplicate code;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@16894 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clui.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clui.cpp b/plugins/Clist_modern/src/modern_clui.cpp index 2f1d258d2c..7b51d0edeb 100644 --- a/plugins/Clist_modern/src/modern_clui.cpp +++ b/plugins/Clist_modern/src/modern_clui.cpp @@ -773,7 +773,7 @@ static UINT_PTR SetTimerSync(WPARAM wParam, LPARAM) UINT_PTR CLUI_SafeSetTimer(HWND hwnd, int ID, int Timeout, TIMERPROC proc)
{
struct _tagTimerAsync param = { hwnd, ID, Timeout, proc };
- return Sync(SetTimerSync, (WPARAM)¶m, (LPARAM)0);
+ return Sync(SetTimerSync, (WPARAM)¶m, 0);
}
int CLUI_UpdateTimer()
|