]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/print.cpp
Fix compilation error in recent change to wxSizeEvent generation.
[wxWidgets.git] / src / gtk / print.cpp
index 2772055c877164b8bdc0414df062bc31406fcd02..d72c2a9a5ef672e12e3aacc5c5afba94fe6e1c95 100644 (file)
@@ -57,7 +57,7 @@ wxFORCE_LINK_THIS_MODULE(gtk_print)
 
 #include "wx/gtk/private/object.h"
 
-// Usefull to convert angles from/to Rad to/from Deg.
+// Useful to convert angles from/to Rad to/from Deg.
 static const double RAD2DEG  = 180.0 / M_PI;
 static const double DEG2RAD  = M_PI / 180.0;
 
@@ -667,8 +667,8 @@ int wxGtkPrintDialog::ShowModal()
     }
     else if (response == GTK_PRINT_OPERATION_RESULT_ERROR)
     {
+        wxLogError(_("Error while printing: ") + wxString(gError ? gError->message : "???"));
         g_error_free (gError);
-        wxLogError(_("Error while printing: ") + wxString::Format(_("%s"), gError->message));
         return wxID_NO; // We use wxID_NO because there is no wxID_ERROR available
     }