X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..106d80ad373817594dba9aeacef76b663eda2d0b:/include/wx/dbgrid.h?ds=sidebyside diff --git a/include/wx/dbgrid.h b/include/wx/dbgrid.h index da476d1442..c057b4b116 100644 --- a/include/wx/dbgrid.h +++ b/include/wx/dbgrid.h @@ -6,7 +6,7 @@ // Created: // RCS-ID: $Id$ // Copyright: (c) 1999 The Computer Surgery (roger@computer-surgery.co.uk) -// Licence: wxWidgets licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // Branched From : dbgrid.h,v 1.19 2001/03/28 11:16:01 /////////////////////////////////////////////////////////////////////////////// @@ -29,7 +29,7 @@ #define wxGRID_VALUE_DBAUTO _T("dbauto") -WX_DECLARE_EXPORTED_OBJARRAY(GenericKey,keyarray); +WX_DECLARE_USER_EXPORTED_OBJARRAY(GenericKey,keyarray,WXDLLIMPEXP_DBGRID); static const int wxUSE_QUERY = -1; @@ -118,7 +118,7 @@ class WXDLLIMPEXP_DBGRID 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() @@ -150,12 +150,12 @@ public: virtual wxString 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; + return true; else return Writeback(); }