]> git.saurik.com Git - wxWidgets.git/commitdiff
Use 1 as true and "" as false, not the opposite.
authorMattia Barbon <mbarbon@cpan.org>
Sun, 26 Nov 2006 14:22:29 +0000 (14:22 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Sun, 26 Nov 2006 14:22:29 +0000 (14:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43653 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index f89d8470a6bc8cee1723bbbaec7a5550cb6f4c03..0e77e10991d68a32df7cdd741bf6c354497f5e18 100644 (file)
@@ -1234,7 +1234,7 @@ bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent& event)
 // ----------------------------------------------------------------------------
 
 // the default values for GetValue()
 // ----------------------------------------------------------------------------
 
 // 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,
 
 void wxGridCellBoolEditor::Create(wxWindow* parent,
                                   wxWindowID id,