Remove extra semicolons in Objective-C code.
The semicolons after the method signature in its implementation are useless and, in fact, provoke warnings from the compiler used by Xcode 4. Simply remove them. See #12927. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66973 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -66,8 +66,7 @@
|
|||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)tabView:(NSTabView *)tabView didSelectTabViewItem:(NSTabViewItem *)tabViewItem;
|
- (void)tabView:(NSTabView *)tabView didSelectTabViewItem:(NSTabViewItem *)tabViewItem
|
||||||
|
|
||||||
{
|
{
|
||||||
wxUnusedVar(tabViewItem);
|
wxUnusedVar(tabViewItem);
|
||||||
wxNSTabView* view = (wxNSTabView*) tabView;
|
wxNSTabView* view = (wxNSTabView*) tabView;
|
||||||
|
@@ -72,7 +72,7 @@ void wxBell()
|
|||||||
wxUnusedVar(application);
|
wxUnusedVar(application);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (BOOL)application:(NSApplication *)sender openFile:(NSString *)filename;
|
- (BOOL)application:(NSApplication *)sender openFile:(NSString *)filename
|
||||||
{
|
{
|
||||||
wxUnusedVar(sender);
|
wxUnusedVar(sender);
|
||||||
wxCFStringRef cf(wxCFRetain(filename));
|
wxCFStringRef cf(wxCFRetain(filename));
|
||||||
@@ -80,7 +80,7 @@ void wxBell()
|
|||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender;
|
- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender
|
||||||
{
|
{
|
||||||
wxUnusedVar(sender);
|
wxUnusedVar(sender);
|
||||||
wxTheApp->MacNewFile() ;
|
wxTheApp->MacNewFile() ;
|
||||||
|
Reference in New Issue
Block a user