no, DO NOT use wxMessageBox where wxLogError is more suitable
(and don't display Information icon when reporting an *error* (sigh...)) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15564 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -26,7 +26,6 @@
|
|||||||
#include "wx/log.h"
|
#include "wx/log.h"
|
||||||
#include "wx/intl.h"
|
#include "wx/intl.h"
|
||||||
#include "wx/dc.h"
|
#include "wx/dc.h"
|
||||||
#include "wx/msgdlg.h"
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if wxUSE_HTML && wxUSE_PRINTING_ARCHITECTURE && wxUSE_STREAMS
|
#if wxUSE_HTML && wxUSE_PRINTING_ARCHITECTURE && wxUSE_STREAMS
|
||||||
@@ -546,8 +545,7 @@ void wxHtmlEasyPrinting::PageSetup()
|
|||||||
{
|
{
|
||||||
if (!m_PrintData->Ok())
|
if (!m_PrintData->Ok())
|
||||||
{
|
{
|
||||||
wxMessageBox(_("Sorry, there was a problem: you may need to set a default printer."),
|
wxLogError(_("There was a problem during page setup: you may need to set a default printer."));
|
||||||
_("Page Setup Problem"), wxICON_INFORMATION|wxOK, m_Frame);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user