]> git.saurik.com Git - wxWidgets.git/commitdiff
Needed a comment after last #endif and defined true TRUE and false FALSE for Visual...
authorDavid Webster <Dave.Webster@bhmi.com>
Mon, 11 Jun 2001 14:12:32 +0000 (14:12 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Mon, 11 Jun 2001 14:12:32 +0000 (14:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10534 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/dbgrid.h
include/wx/defs.h

index 60f9ca0816710dc7abb3352c555c85f4d215ff8a..8b6bf5d49aca18f654728fbf7e0793098725600a 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     Displays a wxDbTable in a wxGrid.
 // Author:      Roger Gammans, Paul Gammans
 // Modified by:
-// Created:     
+// Created:
 // RCS-ID:      $Id$
 // Copyright:   (c) 1999 The Computer Surgery (roger@computer-surgery.co.uk)
 // Licence:     wxWindows licence
@@ -49,11 +49,11 @@ public:
     {
         DbCol       = ref.DbCol;
         wxtypename  = ref.wxtypename;
-        Title       = ref.Title;    
+        Title       = ref.Title;
     }
     //Empty destructor for member obj's
     ~wxDbGridColInfoBase() {}
-    
+
     int        DbCol;
     wxString   wxtypename;
     wxString   Title;
@@ -112,12 +112,12 @@ public:
     virtual int GetNumberRows()
     {
         wxLogDebug(" GetNumberRows() = %i",m_rowtotal);
-        return m_rowtotal; 
+        return m_rowtotal;
     }
     virtual int GetNumberCols()
-    { 
+    {
         wxLogDebug(" GetNumberCols() = %i",m_nocols);
-        return m_nocols; 
+        return m_nocols;
     }
     virtual bool     IsEmptyCell(int row, int col) ;
     virtual wxString GetValue(int row, int col) ;
@@ -144,10 +144,10 @@ public:
     {
         if (m_row != row)
             return true;
-        else 
+        else
             return Writeback();
     }
-    
+
 private:
     //Operates on the current row
     bool Writeback() const;
@@ -166,4 +166,4 @@ private:
 #endif  // #if wxUSE_NEW_GRID
 #endif  // #if wxUSE_ODBC
 
-#endif _WX_GENERIC_DBGRID_H_
+#endif  // _WX_GENERIC_DBGRID_H_
index aaa969318831103b908d0e62d65577e7ddc51fed..cf965721b380619db2fc1ac2e31228c77e42d340 100644 (file)
     #define FALSE 0
 #endif
 
+#ifdef __VISAGECPP__
+    #define true TRUE
+    #define false FALSE
+#endif
+
 // Add more tests here for Windows compilers that already define bool
 // (under Unix, configure tests for this)
 #ifndef HAVE_BOOL