diff options
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);
}
|