git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55801
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#include "wx/bitmap.h"
#include "wx/colour.h"
#include "wx/font.h"
+ #include "wx/math.h"
#endif
const wxSize pixels = wxGetDisplaySize();
const wxSize mm = wxGetDisplaySizeMM();
- return wxSize((pixels.x * 25.4) / mm.x,
- (pixels.y * 25.4) / mm.y);
+ return wxSize((int)((pixels.x * inches2mm) / mm.x),
+ (int)((pixels.y * inches2mm) / mm.y));
}
wxResourceCache::~wxResourceCache ()