]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dcbase.cpp
fix button double click handling (should be treated the same as single click)
[wxWidgets.git] / src / common / dcbase.cpp
index a0214a5cffac084d47e6724f49c5942533e49cac..83e9980940dd5beb368f971292dda3e1c6c7352a 100644 (file)
@@ -32,6 +32,8 @@
 
 #include <math.h>
 
+// bool wxDCBase::sm_cacheing = FALSE;
+
 // ============================================================================
 // implementation
 // ============================================================================
@@ -326,8 +328,8 @@ void wxDCBase::GetMultiLineTextExtent(const wxString& text,
                                       wxCoord *h,
                                       wxFont *font)
 {
-    int widthTextMax = 0, widthLine,
-        heightTextTotal = 0, heightLineDefault = 0, heightLine = 0;
+    wxCoord widthTextMax = 0, widthLine,
+            heightTextTotal = 0, heightLineDefault = 0, heightLine = 0;
 
     wxString curLine;
     for ( const wxChar *pc = text; ; pc++ )