X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f3a65071987ac699afa1cf7edf909f5770244dba..9f3362c440ef4c780d9a4bc8089de60a21d108bd:/src/generic/prop.cpp diff --git a/src/generic/prop.cpp b/src/generic/prop.cpp index b63cafa0cf..bd2f6c1323 100644 --- a/src/generic/prop.cpp +++ b/src/generic/prop.cpp @@ -985,9 +985,9 @@ bool wxPropertySheet::SetProperty(const wxString name, wxPropertyValue value) wxProperty* prop = GetProperty(name); if(prop){ prop->SetValue(value); - return true; + return TRUE; }else{ - return false; + return FALSE; } } void wxPropertySheet::RemoveProperty(wxString name) @@ -1002,7 +1002,7 @@ void wxPropertySheet::RemoveProperty(wxString name) } bool wxPropertySheet::HasProperty(wxString name) { - return (GetProperty(name)?true:false); + return (GetProperty(name)?TRUE:FALSE); } // Clear all properties void wxPropertySheet::Clear(void)