Warning fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30372 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-11-08 19:57:37 +00:00
parent 3f0785de9a
commit 4e4528f6a5
2 changed files with 4 additions and 4 deletions

View File

@@ -255,7 +255,7 @@ wxDC* wxPostScriptPrinter::PrintDialog(wxWindow *parent)
return dc;
}
bool wxPostScriptPrinter::Setup(wxWindow *parent)
bool wxPostScriptPrinter::Setup(wxWindow *WXUNUSED(parent))
{
#if 0
wxGenericPrintDialog* dialog = new wxGenericPrintDialog(parent, & m_printDialogData);
@@ -273,7 +273,7 @@ bool wxPostScriptPrinter::Setup(wxWindow *parent)
return (ret == wxID_OK);
#endif
return wxID_CANCEL;
return false;
}
// ----------------------------------------------------------------------------

View File

@@ -110,12 +110,12 @@ wxPostScriptPrintNativeData::~wxPostScriptPrintNativeData()
{
}
bool wxPostScriptPrintNativeData::TransferTo( wxPrintData &data )
bool wxPostScriptPrintNativeData::TransferTo( wxPrintData &WXUNUSED(data) )
{
return true;
}
bool wxPostScriptPrintNativeData::TransferFrom( const wxPrintData &data )
bool wxPostScriptPrintNativeData::TransferFrom( const wxPrintData &WXUNUSED(data) )
{
return true;
}