]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove extra semicolons in Objective-C code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 19 Feb 2011 14:16:58 +0000 (14:16 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 19 Feb 2011 14:16:58 +0000 (14:16 +0000)
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

src/osx/cocoa/notebook.mm
src/osx/cocoa/utils.mm

index bba36f5d942a676467d7cbf8ce3d4e17c4d56765..5dff77fb3c424862c7c28ec8246d5894124b49c4 100644 (file)
@@ -66,8 +66,7 @@
     return YES;
 }
 
-- (void)tabView:(NSTabView *)tabView didSelectTabViewItem:(NSTabViewItem *)tabViewItem;
-
+- (void)tabView:(NSTabView *)tabView didSelectTabViewItem:(NSTabViewItem *)tabViewItem
 {
     wxUnusedVar(tabViewItem);
     wxNSTabView* view = (wxNSTabView*) tabView;
index fb325bd19c89048cf701abdea4a80f33937273c5..ea7f08edd0751d0359825d02cc45b8e776dabbcf 100644 (file)
@@ -72,7 +72,7 @@ void wxBell()
     wxUnusedVar(application);
 }
 
-- (BOOL)application:(NSApplication *)sender openFile:(NSString *)filename;
+- (BOOL)application:(NSApplication *)sender openFile:(NSString *)filename
 {
     wxUnusedVar(sender);
     wxCFStringRef cf(wxCFRetain(filename));
@@ -80,7 +80,7 @@ void wxBell()
     return YES;
 }
 
-- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender;
+- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender
 {
     wxUnusedVar(sender);
     wxTheApp->MacNewFile() ;