From a1d5a2937a9905e19f0c95c8f8fd825f9030a618 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 7 Jan 2007 19:58:48 +0000 Subject: [PATCH] corrected message about page number overflow git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/htmprint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/html/htmprint.cpp b/src/html/htmprint.cpp index 5b33c6e860..834e791b2b 100644 --- a/src/html/htmprint.cpp +++ b/src/html/htmprint.cpp @@ -376,7 +376,7 @@ void wxHtmlPrintout::CountPages() m_PageBreaks.Add( pos); 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 ); break; } -- 2.47.2