From: Mattia Barbon Date: Sun, 26 Nov 2006 14:22:29 +0000 (+0000) Subject: Use 1 as true and "" as false, not the opposite. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/dab61ed75fbb71b1fb3aab86a56f2f1a6b5d1e50 Use 1 as true and "" as false, not the opposite. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43653 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index f89d8470a6..0e77e10991 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -1234,7 +1234,7 @@ bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent& event) // ---------------------------------------------------------------------------- // the default values for GetValue() -wxString wxGridCellBoolEditor::ms_stringValues[2] = { _T("1"), _T("") }; +wxString wxGridCellBoolEditor::ms_stringValues[2] = { _T(""), _T("1") }; void wxGridCellBoolEditor::Create(wxWindow* parent, wxWindowID id,