X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af49c4b8a2d3553e733e71c7dd3911881f4c1a2a..52c71b808f1c7fd161bb0bc5082683320f15dbb2:/include/wx/dc.h diff --git a/include/wx/dc.h b/include/wx/dc.h index 11e282d8af..75f3dc348a 100644 --- a/include/wx/dc.h +++ b/include/wx/dc.h @@ -602,7 +602,7 @@ public: 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 { long w, h; GetSizeMM(& w, & h); *width = (float) w; *height = (float) h; } + void GetSizeMM(float *width, float *height) const { int w, h; GetSizeMM(& w, & h); *width = (float) w; *height = (float) h; } #endif // WXWIN_COMPATIBILITY @@ -770,8 +770,6 @@ private: #include "wx/mac/dc.h" #elif defined(__WXPM__) #include "wx/os2/dc.h" -#elif defined(__WXSTUBS__) - #include "wx/stubs/dc.h" #endif // ----------------------------------------------------------------------------