more extra semicolons removed (patch 1303724)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35673 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -98,7 +98,7 @@ wxPrinterBase *wxNativePrintFactory::CreatePrinter( wxPrintDialogData *data )
|
||||
#else
|
||||
return new wxPostScriptPrinter( data );
|
||||
#endif
|
||||
};
|
||||
}
|
||||
|
||||
wxPrintPreviewBase *wxNativePrintFactory::CreatePrintPreview( wxPrintout *preview,
|
||||
wxPrintout *printout, wxPrintDialogData *data )
|
||||
@@ -1136,17 +1136,17 @@ bool wxPrintPreviewBase::SetCurrentPage(int pageNum)
|
||||
}
|
||||
|
||||
int wxPrintPreviewBase::GetCurrentPage() const
|
||||
{ return m_currentPage; };
|
||||
{ return m_currentPage; }
|
||||
void wxPrintPreviewBase::SetPrintout(wxPrintout *printout)
|
||||
{ m_previewPrintout = printout; };
|
||||
{ m_previewPrintout = printout; }
|
||||
wxPrintout *wxPrintPreviewBase::GetPrintout() const
|
||||
{ return m_previewPrintout; };
|
||||
{ return m_previewPrintout; }
|
||||
wxPrintout *wxPrintPreviewBase::GetPrintoutForPrinting() const
|
||||
{ return m_printPrintout; };
|
||||
{ return m_printPrintout; }
|
||||
void wxPrintPreviewBase::SetFrame(wxFrame *frame)
|
||||
{ m_previewFrame = frame; };
|
||||
{ m_previewFrame = frame; }
|
||||
void wxPrintPreviewBase::SetCanvas(wxPreviewCanvas *canvas)
|
||||
{ m_previewCanvas = canvas; };
|
||||
{ m_previewCanvas = canvas; }
|
||||
wxFrame *wxPrintPreviewBase::GetFrame() const
|
||||
{ return m_previewFrame; }
|
||||
wxPreviewCanvas *wxPrintPreviewBase::GetCanvas() const
|
||||
|
Reference in New Issue
Block a user