#ifdef __GNUG__
-#pragma implementation
+#pragma implementation "htmprint.h"
#endif
// For compilers that support precompilation, includes "wx/wx.h".
m_Frame = parent_frame;
m_Name = name;
m_PrintData = new wxPrintData;
-#if (defined __WXGTK__) || (defined __WXMOTIF__)
- (*m_PrintData) = (*wxThePrintSetupData);
-#endif
m_PageSetupData = new wxPageSetupDialogData;
m_Headers[0] = m_Headers[1] = m_Footers[0] = m_Footers[1] = wxEmptyString;
void wxHtmlEasyPrinting::PageSetup()
{
+ if (!m_PrintData->Ok())
+ {
+ wxLogError(_("There was a problem during page setup: you may need to set a default printer."));
+ return;
+ }
+
m_PageSetupData->SetPrintData(*m_PrintData);
wxPageSetupDialog pageSetupDialog(m_Frame, m_PageSetupData);