diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-25 18:33:49 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-25 18:33:49 +0000 |
commit | 60eb7158c64c215db62ba3df6f248778792cbe5a (patch) | |
tree | b5a7a6140ecb4ac31db19acb3d54d358ffc59d6c /plugins/Clist_blind/src/clistmenus.cpp | |
parent | 886f1ff4d9ba1d3ac3fdc382399d8e6fd083a232 (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@14697 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_blind/src/clistmenus.cpp')
-rw-r--r-- | plugins/Clist_blind/src/clistmenus.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/Clist_blind/src/clistmenus.cpp b/plugins/Clist_blind/src/clistmenus.cpp index aed1426207..5605e0df17 100644 --- a/plugins/Clist_blind/src/clistmenus.cpp +++ b/plugins/Clist_blind/src/clistmenus.cpp @@ -21,11 +21,12 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+
#include "stdafx.h"
-INT_PTR CloseAction(WPARAM,LPARAM)
+INT_PTR CloseAction(WPARAM, LPARAM)
{
- if (CallService(MS_SYSTEM_OKTOEXIT,0,0))
+ if (CallService(MS_SYSTEM_OKTOEXIT, 0, 0))
DestroyWindow(pcli->hwndContactList);
return 0;
@@ -33,5 +34,5 @@ INT_PTR CloseAction(WPARAM,LPARAM) void InitCustomMenus()
{
- CreateServiceFunction( "CloseAction", CloseAction );
+ CreateServiceFunction("CloseAction", CloseAction);
}
|