extra semicolons removed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35844 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-10-08 17:10:10 +00:00
parent a7bdad336c
commit e933b5bc36
12 changed files with 25 additions and 25 deletions

View File

@@ -54,7 +54,7 @@ wxMemoryDC::wxMemoryDC(void)
SetBrush (* wxWHITE_BRUSH);
SetPen (* wxBLACK_PEN);
SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
};
}
wxMemoryDC::wxMemoryDC( wxDC* dc )
{
@@ -80,11 +80,11 @@ wxMemoryDC::wxMemoryDC( wxDC* dc )
SetBrush (* wxWHITE_BRUSH);
SetPen (* wxBLACK_PEN);
};
}
wxMemoryDC::~wxMemoryDC(void)
{
};
}
void wxMemoryDC::SelectObject( const wxBitmap& bitmap )
{
@@ -120,7 +120,7 @@ void wxMemoryDC::SelectObject( const wxBitmap& bitmap )
m_ok = false;
m_pixmap = (WXPixmap) 0;
};
};
}
void wxMemoryDC::DoGetSize( int *width, int *height ) const
{
@@ -134,6 +134,6 @@ void wxMemoryDC::DoGetSize( int *width, int *height ) const
if (width) (*width) = 0;
if (height) (*height) = 0;
};
};
}