]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/textctrl.cpp
fix for HP and IBM compilers, calls to static template functions must be qualified
[wxWidgets.git] / src / univ / textctrl.cpp
index 42d6364c2becf57e8c2b360f2e9917d4b84c1a93..00e987b8005cb36472b0226efb50d52d6b232df3 100644 (file)
@@ -3615,8 +3615,12 @@ void wxTextCtrl::UpdateScrollbars()
 
         if ( scrollRangeXOld )
         {
-            x *= scrollRangeX - m_rectText.width / charWidth;
-            x /= scrollRangeXOld - m_rectText.width / charWidth;
+            const int w = m_rectText.width / charWidth;
+            if ( w != scrollRangeXOld )
+            {
+                x *= scrollRangeX - w;
+                x /= scrollRangeXOld - w;
+            }
             Scroll(x, y);
         }
 
@@ -4193,6 +4197,7 @@ void wxTextCtrl::DoDraw(wxControlRenderer *renderer)
     // FIXME: is this really a bug in wxMSW?
     rectTextArea.width--;
 #endif // __WXMSW__
+    dc.DestroyClippingRegion();
     dc.SetClippingRegion(rectTextArea);
 
     // adjust for scrolling