From 2daf63c4ebd3f1254baabdf21aa74ff5ea39d95a Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sat, 19 Feb 2011 16:18:55 +0000 Subject: [PATCH] appeasing clang git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66978 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/osx/cocoa/menuitem.mm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/osx/cocoa/menuitem.mm b/src/osx/cocoa/menuitem.mm index 2c9a16cdbe..8599af3a61 100644 --- a/src/osx/cocoa/menuitem.mm +++ b/src/osx/cocoa/menuitem.mm @@ -33,14 +33,14 @@ struct Mapping Mapping sActionToWXMapping[] = { - wxID_UNDO, @selector(undo:) , - wxID_REDO, @selector(redo:) , - wxID_CUT, @selector(cut:) , - wxID_COPY, @selector(copy:) , - wxID_PASTE, @selector(paste:) , - wxID_CLEAR, @selector(delete:) , - wxID_SELECTALL, @selector(selectAll:) , - 0, NULL + { wxID_UNDO, @selector(undo:) }, + { wxID_REDO, @selector(redo:) }, + { wxID_CUT, @selector(cut:) }, + { wxID_COPY, @selector(copy:) }, + { wxID_PASTE, @selector(paste:) }, + { wxID_CLEAR, @selector(delete:) }, + { wxID_SELECTALL, @selector(selectAll:) }, + { 0, NULL } }; int wxOSXGetIdFromSelector(SEL action ) -- 2.45.2