X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e9e4acc5197ac49259b9a39468c5931b4459d87f..13a7abf97312d2e9427898f3432eb9214f09427f:/include/wx/dc.h diff --git a/include/wx/dc.h b/include/wx/dc.h index 9212802c6d..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