]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/app.h
fixed off by one error in wxXPMDecoder::ReadFile
[wxWidgets.git] / include / wx / gtk / app.h
index 6014589623f641039958e07130c9b09d6f0d956b..2681dea2537e0eaf12f54f33bdfa71e27e34d1d9 100644 (file)
@@ -32,7 +32,7 @@ class wxApp: public wxAppBase
 {
 public:
     wxApp();
 {
 public:
     wxApp();
-    ~wxApp();
+    virtual ~wxApp();
 
     /* override for altering the way wxGTK intializes the GUI
      * (palette/visual/colorcube). under wxMSW, OnInitGui() does nothing by
 
     /* override for altering the way wxGTK intializes the GUI
      * (palette/visual/colorcube). under wxMSW, OnInitGui() does nothing by
@@ -75,6 +75,10 @@ public:
 #endif
     unsigned char  *m_colorCube;
 
 #endif
     unsigned char  *m_colorCube;
 
+    // used by the the wxGLApp and wxGLCanvas class for GL-based X visual 
+    // selection; this is actually an XVisualInfo*
+    void           *m_glVisualInfo;
+    
 private:
     // true if we're inside an assert modal dialog
 #ifdef __WXDEBUG__
 private:
     // true if we're inside an assert modal dialog
 #ifdef __WXDEBUG__