diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-23 20:05:16 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-23 20:05:16 +0000 |
commit | 77ece3939612fb0133d20815883e4ed50a10230e (patch) | |
tree | 39ebd782bf53759e42c97b616559e88932d8137d /plugins/Clist_modern/src/hdr | |
parent | bddc04b139e8dfb3ecfb37af1fbf32965b15c577 (diff) |
fixes bug #188 completely
git-svn-id: http://svn.miranda-ng.org/main/trunk@7842 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/hdr')
-rw-r--r-- | plugins/Clist_modern/src/hdr/modern_clui.h | 2 | ||||
-rw-r--r-- | plugins/Clist_modern/src/hdr/modern_skinned_profile.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_modern/src/hdr/modern_clui.h b/plugins/Clist_modern/src/hdr/modern_clui.h index 0844ce63ab..f67a575d6a 100644 --- a/plugins/Clist_modern/src/hdr/modern_clui.h +++ b/plugins/Clist_modern/src/hdr/modern_clui.h @@ -62,7 +62,7 @@ public: static LRESULT CALLBACK cli_ContactListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
CLUI * This = m_pCLUI;
- if ( !m_hWnd ) m_hWnd = hwnd;
+ if (!m_hWnd ) m_hWnd = hwnd;
BOOL bHandled = FALSE;
LRESULT lRes= This->PreProcessWndProc( msg, wParam, lParam, bHandled );
diff --git a/plugins/Clist_modern/src/hdr/modern_skinned_profile.h b/plugins/Clist_modern/src/hdr/modern_skinned_profile.h index 95ab85c606..78fdb1578d 100644 --- a/plugins/Clist_modern/src/hdr/modern_skinned_profile.h +++ b/plugins/Clist_modern/src/hdr/modern_skinned_profile.h @@ -32,7 +32,7 @@ public: #ifdef _UNICODE
MString( const char * str)
{
- if ( !str )
+ if (!str )
_buffer = NULL;
else
{
@@ -83,7 +83,7 @@ public: }
void Unlock() // Leave Section
{
- if ( !_ifLocked ) return;
+ if (!_ifLocked ) return;
if ( _ifCSOwner ) LeaveCriticalSection( &_CS );
else _pLinkedCS->Unlock();
_ifLocked = false;
|