removing extra semicola

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76230 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2014-03-31 07:08:06 +00:00
parent bd2ce32ca4
commit 82d191e352
3 changed files with 5 additions and 5 deletions

View File

@@ -313,7 +313,7 @@ public :
virtual void SetBitmap( const wxBitmap& bitmap ) = 0; virtual void SetBitmap( const wxBitmap& bitmap ) = 0;
virtual void SetBitmapPosition( wxDirection dir ) = 0; virtual void SetBitmapPosition( wxDirection dir ) = 0;
virtual void SetupTabs( const wxNotebook& WXUNUSED(notebook) ) {} 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 void GetBestRect( wxRect *r ) const = 0;
virtual bool IsEnabled() const = 0; virtual bool IsEnabled() const = 0;
virtual void Enable( bool enable ) = 0; virtual void Enable( bool enable ) = 0;

View File

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

View File

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