summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern/src/modern_xptheme.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-01-23 20:05:16 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-01-23 20:05:16 +0000
commit77ece3939612fb0133d20815883e4ed50a10230e (patch)
tree39ebd782bf53759e42c97b616559e88932d8137d /plugins/Clist_modern/src/modern_xptheme.cpp
parentbddc04b139e8dfb3ecfb37af1fbf32965b15c577 (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/modern_xptheme.cpp')
-rw-r--r--plugins/Clist_modern/src/modern_xptheme.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_modern/src/modern_xptheme.cpp b/plugins/Clist_modern/src/modern_xptheme.cpp
index c4d54d0e1a..6a671a521f 100644
--- a/plugins/Clist_modern/src/modern_xptheme.cpp
+++ b/plugins/Clist_modern/src/modern_xptheme.cpp
@@ -48,7 +48,7 @@ void XPThemesUnloadModule()
BOOL xpt_IsThemed(XPTHANDLE xptHandle)
{
BOOL res = FALSE;
- if ( !xptHandle) return FALSE;
+ if (!xptHandle) return FALSE;
xptlock();
{
if (xpt_IsValidHandle(xptHandle) && ((XPTObject*) xptHandle)->hThemeHandle)
@@ -61,7 +61,7 @@ BOOL xpt_IsThemed(XPTHANDLE xptHandle)
BOOL xpt_IsValidHandle(XPTHANDLE xptHandle)
{
BOOL res = FALSE;
- if ( !xptHandle) return FALSE;
+ if (!xptHandle) return FALSE;
xptlock();
{
if (xptObjectList.indexOf((XPTObject*)xptHandle) != -1)