]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix compilo
authorRobert Roebling <robert@roebling.de>
Sun, 6 Apr 2008 20:31:25 +0000 (20:31 +0000)
committerRobert Roebling <robert@roebling.de>
Sun, 6 Apr 2008 20:31:25 +0000 (20:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53064 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/vidmode.h
src/unix/displayx11.cpp

index e22c8d8f07f79430311a0b4159ea9ed4760ace3d..c999eb7d86562c0940dcfe77b2711e1cdd442cc8 100644 (file)
@@ -55,6 +55,7 @@ public:
     int GetWidth() const { return w; }
     int GetHeight() const { return h; }
     int GetDepth() const { return bpp; }
+    int GetRefresh() const { return refresh; }
 
     // returns true if the object has been initialized
     bool IsOk() const { return w && h; }
index e74d3121634b17e62aeca34fb944ad5f8a28a686..de3a03b01914594c336fb2b3a98fccafab2962ae 100644 (file)
@@ -252,9 +252,9 @@ bool wxDisplayImplX11::ChangeMode(const wxVideoMode& mode)
         for (int i = 0; i < nNumModes; ++i)
         {
             if (!bRet &&
-                ppXModes[i]->hdisplay == mode.w &&
-                ppXModes[i]->vdisplay == mode.h &&
-                wxCRR((*ppXModes[i])) == mode.refresh)
+                ppXModes[i]->hdisplay == mode.GetWidth() &&
+                ppXModes[i]->vdisplay == mode.GetHeight() &&
+                wxCRR((*ppXModes[i])) == mode.GetRefresh())
             {
                 //switch!
                 bRet = XF86VidModeSwitchToMode((Display*)wxGetDisplay(), DefaultScreen((Display*)wxGetDisplay()),