corrected message about page number overflow
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -376,7 +376,7 @@ void wxHtmlPrintout::CountPages()
|
|||||||
m_PageBreaks.Add( pos);
|
m_PageBreaks.Add( pos);
|
||||||
if( m_PageBreaks.Count() > wxHTML_PRINT_MAX_PAGES)
|
if( m_PageBreaks.Count() > wxHTML_PRINT_MAX_PAGES)
|
||||||
{
|
{
|
||||||
wxMessageBox( _("HTML pagination algorithm generated more than the allowed maximum number of pages and it can continue any longer!"),
|
wxMessageBox( _("HTML pagination algorithm generated more than the allowed maximum number of pages and it can't continue any longer!"),
|
||||||
_("Warning"), wxCANCEL | wxICON_ERROR );
|
_("Warning"), wxCANCEL | wxICON_ERROR );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user