]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/grid/griddemo.h
Removed unused variable.
[wxWidgets.git] / samples / grid / griddemo.h
index a06464e232074c7f0c0c404f810f93b0c32efeea..49629b633d13d77d2d4d32d2caa66fca31935798 100644 (file)
@@ -24,8 +24,10 @@ public:
 class GridFrame : public wxFrame
 {
     wxGrid         *grid;
+#if wxUSE_LOG
     wxTextCtrl     *logWin;
     wxLogTextCtrl  *logger;
+#endif // wxUSE_LOG
     wxString       logBuf;
 
     void SetDefaults();
@@ -148,7 +150,9 @@ public:
         ID_TESTFUNC
     };
 
+#if wxUSE_LOG
     wxLog *m_logOld;
+#endif // wxUSE_LOG
 
     // add the cells to selection when using commands from select menu?
     bool m_addToSel;
@@ -185,7 +189,7 @@ public:
     }
 
     void SetValue( int , int , const wxString&  ) { /* ignore */ }
-    bool IsEmptyCell( int , int  ) { return FALSE; }
+    bool IsEmptyCell( int , int  ) { return false; }
 
 private:
     long m_sizeGrid;