diff options
author | George Hazan <george.hazan@gmail.com> | 2016-05-06 15:28:18 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-05-06 15:28:18 +0000 |
commit | f6c3afc4b7eb38a4c2a189fa7e5ba9d44c095cc4 (patch) | |
tree | e8d746f72c44344150c53c57a58618e6a47a3406 /plugins/Clist_modern/src/modern_clui.cpp | |
parent | 5b3107408e96484e0c98c172c39dde66c8fe9897 (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@16806 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 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/Clist_modern/src/modern_clui.cpp b/plugins/Clist_modern/src/modern_clui.cpp index 1b7121dbc7..2f1d258d2c 100644 --- a/plugins/Clist_modern/src/modern_clui.cpp +++ b/plugins/Clist_modern/src/modern_clui.cpp @@ -544,10 +544,9 @@ static BOOL CLUI_WaitThreadsCompletion() static const BYTE bcMAX_AWAITING_RETRY = 10; // repeat awaiting only 10 times
TRACE("CLUI_WaitThreadsCompletion Enter");
if (bEntersCount < bcMAX_AWAITING_RETRY &&
- (g_mutex_nCalcRowHeightLock || g_CluiData.mutexPaintLock || g_hAwayMsgThread || g_hGetTextAsyncThread || g_hSmoothAnimationThread) && !Miranda_Terminated())
+ (g_CluiData.mutexPaintLock || g_hAwayMsgThread || g_hGetTextAsyncThread || g_hSmoothAnimationThread) && !Miranda_Terminated())
{
TRACE("Waiting threads");
- TRACEVAR("g_mutex_nCalcRowHeightLock: %x", g_mutex_nCalcRowHeightLock);
TRACEVAR("g_CluiData.mutexPaintLock: %x", g_CluiData.mutexPaintLock);
TRACEVAR("g_hAwayMsgThread: %x", g_hAwayMsgThread);
TRACEVAR("g_hGetTextAsyncThread: %x", g_hGetTextAsyncThread);
|