]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/prop.cpp
more wxToolTip changes
[wxWidgets.git] / src / generic / prop.cpp
index b63cafa0cf6932a89a3a83031e6ebe2120b102ea..bd2f6c13235d54cbf0dc2c62fe4ac0697a06d041 100644 (file)
@@ -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)