]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dc.h
No real changes, just refactoring.
[wxWidgets.git] / include / wx / dc.h
index a54bf5236117aa26fc66ff9689bb3af150ab9359..b536b75d9e692f5509b0074e387efdbcde1de1e1 100644 (file)
@@ -636,16 +636,6 @@ public:
     }
 #endif // !Win16
 
-#if WXWIN_COMPATIBILITY
-
-    void GetTextExtent(const wxString& string, float *x, float *y,
-            float *descent = NULL, float *externalLeading = NULL,
-            wxFont *theFont = NULL, bool use16bit = FALSE) const ;
-    void GetSize(float* width, float* height) const { int w, h; GetSize(& w, & h); *width = w; *height = h; }
-    void GetSizeMM(float *width, float *height) const { int w, h; GetSizeMM(& w, & h); *width = (float) w; *height = (float) h; }
-
-#endif // WXWIN_COMPATIBILITY
-
 protected:
     // the pure virtual functions which should be implemented by wxDC
     virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,