]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/widgets/widgets.h
compilation fix after last commit
[wxWidgets.git] / samples / widgets / widgets.h
index 11840de9f2eb39701867edd86f4731e420971220..b0ed066f589a2fd74586b4aa1a620f28e7ecfd13 100644 (file)
@@ -92,11 +92,14 @@ class WidgetsPage : public wxPanel
 public:
     WidgetsPage(WidgetsBookCtrl *book,
                 wxImageList *imaglist,
-                char* icon[]);
+                const char *const icon[]);
 
     // return the control shown by this page
     virtual wxControl *GetWidget() const = 0;
 
+    // return the control shown by this page, if it supports text entry interface
+    virtual wxTextEntryBase *GetTextEntry() const { return NULL; }
+
     // lazy creation of the content
     virtual void CreateContent() = 0;