]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/panel.h
handle error in GetDataSize()
[wxWidgets.git] / interface / wx / panel.h
index 6e6e8b3d683fdf7a44e7d1d3db7ca606da91ac20..18affd636aae3781032f71f9ecf46cd3c8134f2e 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxPanel
-    @wxheader{panel.h}
 
     A panel is a window on which controls are placed. It is usually placed within
     a frame. Its main feature over its parent class wxWindow is code for handling
@@ -70,7 +69,7 @@ public:
     /**
         Destructor. Deletes any child windows before deleting the physical window.
     */
-    ~wxPanel();
+    virtual ~wxPanel();
 
     /**
         This method is overridden from wxWindow::AcceptsFocus()
@@ -95,7 +94,7 @@ public:
 
         @see wxInitDialogEvent
     */
-    void InitDialog();
+    virtual void InitDialog();
 
     /**
         The default handler for wxEVT_SYS_COLOUR_CHANGED.
@@ -131,6 +130,6 @@ public:
         In contrast to SetFocus() (see above) this will set the focus to the panel
         even if there are child windows in the panel. This is only rarely needed.
     */
-    virtual void SetFocusIgnoringChildren();
+    void SetFocusIgnoringChildren();
 };