remove extraneous semicolons

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@76354 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2014-04-15 17:39:19 +00:00
parent 7f2dcffd52
commit 1262d43005
8 changed files with 15 additions and 15 deletions

View File

@@ -419,7 +419,7 @@ public:
// this doesn't do anything and is kept for compatibility only
#if WXWIN_COMPATIBILITY_2_8
wxDEPRECATED_INLINE(void SetNoAntiAliasing(bool no = true), wxUnusedVar(no););
wxDEPRECATED_INLINE(void SetNoAntiAliasing(bool no = true), wxUnusedVar(no);)
wxDEPRECATED_INLINE(bool GetNoAntiAliasing() const, return false;)
#endif // WXWIN_COMPATIBILITY_2_8

View File

@@ -11,8 +11,8 @@
#ifndef _WX_OSX_CORE_EVTLOOP_H_
#define _WX_OSX_CORE_EVTLOOP_H_
DECLARE_WXOSX_OPAQUE_CFREF( CFRunLoop );
DECLARE_WXOSX_OPAQUE_CFREF( CFRunLoopObserver );
DECLARE_WXOSX_OPAQUE_CFREF( CFRunLoop )
DECLARE_WXOSX_OPAQUE_CFREF( CFRunLoopObserver )
class WXDLLIMPEXP_FWD_BASE wxCFEventLoopPauseIdleEvents;

View File

@@ -313,7 +313,7 @@ public :
virtual void SetBitmap( const wxBitmap& bitmap ) = 0;
virtual void SetBitmapPosition( wxDirection dir ) = 0;
virtual void SetupTabs( const wxNotebook& WXUNUSED(notebook) ) {}
virtual int TabHitTest( const wxPoint & WXUNUSED(pt), long *flags ) {*flags=1; return -1;};
virtual int TabHitTest( const wxPoint & WXUNUSED(pt), long *flags ) {*flags=1; return -1;}
virtual void GetBestRect( wxRect *r ) const = 0;
virtual bool IsEnabled() const = 0;
virtual void Enable( bool enable ) = 0;

View File

@@ -39,12 +39,12 @@ public:
{
m_primary = a;
m_secondary = NULL;
};
}
wxPGWindowList( wxWindow* a, wxWindow* b )
{
m_primary = a;
m_secondary = b;
};
}
};
// -----------------------------------------------------------------------

View File

@@ -329,13 +329,13 @@ public:
{
wxASSERT(m_pPropGrid);
return m_pPropGrid;
};
}
const wxPropertyGrid* GetGrid() const
{
wxASSERT(m_pPropGrid);
return (const wxPropertyGrid*)m_pPropGrid;
};
}
/** Returns iterator class instance.
@remarks

View File

@@ -115,7 +115,7 @@ private:
wxMediaCtrlPlayerControls m_interfaceflags; // Saved interface flags
DECLARE_DYNAMIC_CLASS(wxQTMediaBackend);
wxDECLARE_DYNAMIC_CLASS(wxQTMediaBackend);
};
// --------------------------------------------------------------------------
@@ -152,7 +152,7 @@ private:
[super dealloc];
}
-(wxQTMediaBackend*) backend;
-(wxQTMediaBackend*) backend
{
return m_backend;
}

View File

@@ -192,7 +192,7 @@ NSRect wxOSXGetFrameForControl( wxWindowMac* window , const wxPoint& pos , const
const UCKeyboardLayout *keyboardLayout = (const UCKeyboardLayout*)CFDataGetBytePtr(uchr);
if (keyboardLayout) {
UInt32 deadKeyState = 0;
UniCharCount maxStringLength = 255;
const UniCharCount maxStringLength = 255;
UniCharCount actualStringLength = 0;
UniChar unicodeString[maxStringLength];
@@ -788,7 +788,7 @@ void wxWidgetCocoaImpl::SetupMouseEvent( wxMouseEvent &wxevent , NSEvent * nsEve
[_lastToolTipOwner mouseEntered:fakeEvent];
}
- (void)setToolTip:(NSString *)string;
- (void)setToolTip:(NSString *)string
{
if (string)
{

View File

@@ -1822,7 +1822,7 @@ class WXDLLEXPORT wxBundleResourceHandler: public wxBitmapHandler
public:
inline wxBundleResourceHandler()
{
};
}
virtual bool LoadFile(wxBitmap *bitmap,
const wxString& name,
@@ -1843,7 +1843,7 @@ public:
SetName(wxT("PNG resource"));
SetExtension("PNG");
SetType(wxBITMAP_TYPE_PNG_RESOURCE);
};
}
};
IMPLEMENT_DYNAMIC_CLASS(wxPNGResourceHandler, wxBundleResourceHandler)
@@ -1858,7 +1858,7 @@ public:
SetName(wxT("JPEG resource"));
SetExtension("JPEG");
SetType(wxBITMAP_TYPE_JPEG_RESOURCE);
};
}
};
IMPLEMENT_DYNAMIC_CLASS(wxJPEGResourceHandler, wxBundleResourceHandler)