X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/32a2907bd33438d2119d587aa9656c0d94e6e460..2c1f73eecf5ebf3fb49955bea888ca7355e93c2a:/include/wx/dbgrid.h diff --git a/include/wx/dbgrid.h b/include/wx/dbgrid.h index 60f9ca0816..a55ccfdcad 100644 --- a/include/wx/dbgrid.h +++ b/include/wx/dbgrid.h @@ -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; @@ -106,18 +106,18 @@ class wxDbGridTableBase : public wxGridTableBase { public: wxDbGridTableBase(wxDbTable *tab, wxDbGridColInfo *ColInfo, - int count = wxUSE_QUERY, bool takeOwnership = true); + int count = wxUSE_QUERY, bool takeOwnership = TRUE); ~wxDbGridTableBase(); 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) ; @@ -138,16 +138,16 @@ public: virtual wxString wxDbGridTableBase::GetColLabelValue(int col); - virtual bool AssignDbTable(wxDbTable *tab, int count = wxUSE_QUERY, bool takeOwnership=true); + virtual bool AssignDbTable(wxDbTable *tab, int count = wxUSE_QUERY, bool takeOwnership=TRUE); virtual void ValidateRow(int row); virtual bool UpdateRow(int row) const { if (m_row != row) - return true; - else + return TRUE; + 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_