]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/glcanvas.cpp
recognize wxTB_TOP/LEFT/RIGHT/BOTTOM styles too
[wxWidgets.git] / src / x11 / glcanvas.cpp
index 1ecdd96f84c19fd13475138e8ae34c9d8fbe4e6b..c6aa213acc59de575ee3bb190ab5ce2b51c348ea 100644 (file)
@@ -14,7 +14,7 @@
 #include "wx/wxprec.h"
 
 #if defined(__BORLANDC__)
-#pragma hdrstop
+    #pragma hdrstop
 #endif
 
 #if wxUSE_GLCANVAS
 
 #ifndef WX_PRECOMP
     #include "wx/log.h"
+    #include "wx/app.h"
+    #include "wx/utils.h"
 #endif
 
-#include "wx/utils.h"
-#include "wx/app.h"
-
 #ifdef __VMS
 # pragma message disable nosimpint
 #endif
@@ -315,7 +314,7 @@ bool wxGLCanvas::Create( wxWindow *parent,
       attribList = (int*) data;
       // Get an appropriate visual
       vi = glXChooseVisual(display, DefaultScreen(display), attribList);
-      if(!vi) return FALSE;
+      if(!vi) return false;
 
       // Here we should make sure that vi is the same visual as the
       // one used by the xwindow drawable in wxCanvas.  However,
@@ -326,9 +325,9 @@ bool wxGLCanvas::Create( wxWindow *parent,
       XGetWindowAttributes(display, (Window)wxGetClientAreaWindow(this), &xwa);
       vi_templ.visualid = XVisualIDFromVisual(xwa.visual);
       vi = XGetVisualInfo(display, VisualIDMask, &vi_templ, &n);
-      if(!vi) return FALSE;
+      if(!vi) return false;
       glXGetConfig(display, vi, GLX_USE_GL, &val);
-      if(!val) return FALSE;
+      if(!val) return false;
       // Basically, this is it.  It should be possible to use vi
       // in glXCreateContext() below.  But this fails with Mesa.
       // I notified the Mesa author about it; there may be a fix.
@@ -355,13 +354,13 @@ bool wxGLCanvas::Create( wxWindow *parent,
       a_list[n] = None;
       // XFree(vi);
       vi = glXChooseVisual(display, DefaultScreen(display), a_list);
-      if(!vi) return FALSE;
+      if(!vi) return false;
 #endif /* OLD_MESA */
     }
 
     m_vi = vi;  // safe for later use
 
-    wxCHECK_MSG( m_vi, FALSE, wxT("required visual couldn't be found") );
+    wxCHECK_MSG( m_vi, false, wxT("required visual couldn't be found") );
 
     // Create the GLX context and make it current