]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/utils.cpp
provide wxGetLocalTimeMillis() (returning double) even if wxUSE_LONGLONG==0
[wxWidgets.git] / src / mgl / utils.cpp
index 981be518716546dd3e4ac80437b326c48f068825..fd2e5c63c73e0c0417e432908cffb3bd905a6c1e 100644 (file)
@@ -60,11 +60,11 @@ void wxDisplaySizeMM(int *width, int *height)
     wxASSERT_MSG( g_displayDC, wxT("You must call wxApp::SetDisplayMode before using this function") );
 
     int xDPI, yDPI;
-    MGL_getDotsPerInch(&xDPI, &yDPI);    
-    
-    if ( width ) 
+    MGL_getDotsPerInch(&xDPI, &yDPI);
+
+    if ( width )
         *width = (int)((g_displayDC->sizex()+1) * 25.4 / xDPI);
-    if ( height ) 
+    if ( height )
         *height = (int)((g_displayDC->sizey()+1) * 25.4 / yDPI);
 }
 
@@ -79,7 +79,7 @@ void wxClientDisplayRect(int *x, int *y, int *width, int *height)
 bool wxColourDisplay()
 {
     wxASSERT_MSG( g_displayDC, wxT("You must call wxApp::SetDisplayMode before using this function") );
-    
+
     return (wxDisplayDepth() > 1);
 }