]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dcbase.cpp
removed operator>>(istream&, wxString&) -- it's better to not have it at all than...
[wxWidgets.git] / src / common / dcbase.cpp
index baeb1c5ee8b8bd9e76ad1e1d1956aa4dc9a58217..ef8918bbb5e514879a1777bb9118da893497f3b3 100644 (file)
 #endif
 
 #include "wx/dc.h"
-#include "wx/math.h"
+
+#ifndef WX_PRECOMP
+    #include "wx/math.h"
+#endif
 
 // bool wxDCBase::sm_cacheing = false;
 
+IMPLEMENT_ABSTRACT_CLASS(wxDCBase, wxObject)
+
 // ============================================================================
 // implementation
 // ============================================================================
@@ -412,7 +417,7 @@ bool wxDCBase::DoGetPartialTextExtents(const wxString& text, wxArrayInt& widths)
 {
     int totalWidth = 0;
 
-    const size_t len = text.Length();
+    const size_t len = text.length();
     widths.Empty();
     widths.Add(0, len);