diff options
Diffstat (limited to 'plugins/Clist_modern/src/hdr/modern_skinned_profile.h')
-rw-r--r-- | plugins/Clist_modern/src/hdr/modern_skinned_profile.h | 4 |
1 files changed, 2 insertions, 2 deletions
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;
|