From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Sun, 7 Jan 2007 19:58:48 +0000 (+0000)
Subject: corrected message about page number overflow
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a1d5a2937a9905e19f0c95c8f8fd825f9030a618

corrected message about page number overflow


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

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;
         }