]> git.saurik.com Git - wxWidgets.git/commitdiff
appeasing clang
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 19 Feb 2011 16:18:55 +0000 (16:18 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 19 Feb 2011 16:18:55 +0000 (16:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66978 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/cocoa/menuitem.mm

index 2c9a16cdbefce90b07f65570ba0fc5f7149cabdc..8599af3a619fae2c6c55c2376e4a9ad5e9ec454a 100644 (file)
@@ -33,14 +33,14 @@ struct Mapping
 
 Mapping sActionToWXMapping[] =
 {
 
 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 )
 };
 
 int wxOSXGetIdFromSelector(SEL action )