]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/propgrid/editors.h
misc fixes of ctor signatures
[wxWidgets.git] / interface / wx / propgrid / editors.h
index 173d8e414e91aada0a428df42e25b701955d9331..7f39b20814b1b287c5f54cbc1e875bce3f89350e 100644 (file)
@@ -51,9 +51,11 @@ public:
 
     /**
         Returns pointer to the name of the editor. For example,
 
     /**
         Returns pointer to the name of the editor. For example,
-        wxPGEditor_TextCtrl has name "TextCtrl".
+        wxPGEditor_TextCtrl has name "TextCtrl". If you dont' need to access
+        your custom editor by string name, then you do not need to implement
+        this function.
     */
     */
-    virtual wxString GetName() const = 0;
+    virtual wxString GetName() const;
 
     /**
         Instantiates editor controls.
 
     /**
         Instantiates editor controls.
@@ -320,7 +322,7 @@ public:
     /**
         Returns number of buttons.
     */
     /**
         Returns number of buttons.
     */
-    int GetCount();
+    unsigned int GetCount();
 
     /**
         Returns size of primary editor control, as appropriately
 
     /**
         Returns size of primary editor control, as appropriately