X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/39dfe3d45459682cfec9d7975bff2eec9a4649b9..960615f41009ac62e99f833afbec10d96bd2d2f9:/src/html/htmprint.cpp diff --git a/src/html/htmprint.cpp b/src/html/htmprint.cpp index 342dde6cbe..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.") ); - dlg.SetYesNoLabels(_("&Print"), _("&Cancel")); + dlg.SetOKLabel(wxID_PRINT); - if ( dlg.ShowModal() != wxID_YES ) + if ( dlg.ShowModal() == wxID_CANCEL ) return false; }