]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/propgrid/editors.h
document that under wxMSW slant == italic
[wxWidgets.git] / interface / wx / propgrid / editors.h
index be902a925befebfe223d7fd99b1c7ac801822e41..29738a5c22ee858211196d9d47c76d035dacd49f 100644 (file)
@@ -220,18 +220,19 @@ public:
 
             if ( event.GetId() == buttons->GetButtonId(0) )
             {
-                // Do something when first button is pressed
-                return true;
+                // Do something when the first button is pressed
+                // Return true if the action modified the value in editor.
+                ...
             }
             if ( event.GetId() == buttons->GetButtonId(1) )
             {
-                // Do something when second button is pressed
-                return true;
+                // Do something when the second button is pressed
+                ...
             }
             if ( event.GetId() == buttons->GetButtonId(2) )
             {
-                // Do something when third button is pressed
-                return true;
+                // Do something when the third button is pressed
+                ...
             }
         }
         return wxPGTextCtrlEditor::OnEvent(propGrid, property, ctrl, event);