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
This commit is contained in:
Mattia Barbon
2006-11-26 14:22:29 +00:00
parent 486dd03abb
commit dab61ed75f

View File

@@ -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,