From 78c0815c4118fe24ab78cce2dc48a6232dcd824a Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 2 Jun 2012 20:55:18 +0000 Subject: - code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@270 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Clist_nicer/SRC/init.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/Clist_nicer/SRC/init.cpp') diff --git a/plugins/Clist_nicer/SRC/init.cpp b/plugins/Clist_nicer/SRC/init.cpp index 59ada8931b..77d5ed123e 100644 --- a/plugins/Clist_nicer/SRC/init.cpp +++ b/plugins/Clist_nicer/SRC/init.cpp @@ -249,7 +249,7 @@ extern "C" int __declspec(dllexport) CListInitialise(PLUGINLINK * link) int iCount = CallService(MS_DB_CONTACT_GETCOUNT, 0, 0); iCount += 20; - if( iCount < 300 ) + if ( iCount < 300 ) iCount = 300; cfg::eCache = reinterpret_cast(malloc(sizeof(TExtraCache) * iCount)); @@ -301,7 +301,7 @@ extern "C" int __declspec(dllexport) CListInitialise(PLUGINLINK * link) if(cfg::dat.bFirstRun) cfg::writeByte("CLUI", "firstrun", 0); - if(!cfg::getString(NULL, "CLUI", "exIconOrder", &dbv)) { + if (!cfg::getString(NULL, "CLUI", "exIconOrder", &dbv)) { if(lstrlenA(dbv.pszVal) < EXICON_COUNT) { for(i = 1; i <= EXICON_COUNT; i++) cfg::dat.exIconOrder[i - 1] = i; @@ -349,7 +349,7 @@ LBL_Error: MessageBoxA( NULL, "This plugin requires Miranda IM 0.8.0.9 or later", "Fatal error", MB_OK ); return 1; } - if ( pcli->version < 6 ) // don't join it with the previous if() + if ( pcli->version < 6 ) // don't join it with the previous if () goto LBL_Error; pcli->pfnBuildGroupPopupMenu = BuildGroupPopupMenu; -- cgit v1.2.3