appeasing clang

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66978 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2011-02-19 16:18:55 +00:00
parent 91b85d9b0c
commit 2daf63c4eb

View File

@ -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 )