X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f7f068364f9501871c25bde9134e1ed71f471a2d..b3cec67186d678d2c3985923bdb8c787455cf369:/src/html/htmprint.cpp diff --git a/src/html/htmprint.cpp b/src/html/htmprint.cpp index 9169487712..6a22f88547 100644 --- a/src/html/htmprint.cpp +++ b/src/html/htmprint.cpp @@ -218,16 +218,16 @@ wxHtmlPrintout::CheckFit(const wxSize& pageArea, const wxSize& docArea) const GetTitle() ), _("Printing"), - wxYES_NO | wxNO_DEFAULT | wxICON_QUESTION + wxOK | wxCANCEL | wxCANCEL_DEFAULT | wxICON_QUESTION ); dlg.SetExtendedMessage ( _("If possible, try changing the layout parameters to " - "make the printout more narrow") + "make the printout more narrow.") ); - dlg.SetYesNoLabels(_("&Print"), _("&Cancel")); + dlg.SetOKLabel(wxID_PRINT); - if ( dlg.ShowModal() != wxID_YES ) + if ( dlg.ShowModal() == wxID_CANCEL ) return false; }