]> git.saurik.com Git - wxWidgets.git/commitdiff
wxMDIChildFrame::Maximize() should have default value for its argument just as wxFram...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 20 Mar 2005 15:04:27 +0000 (15:04 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 20 Mar 2005 15:04:27 +0000 (15:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32933 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/mdi.h
include/wx/gtk1/mdi.h

index b6e054b6482fff347586b8a3a98a625e78388f52..08ba0abef2182b3ea5bda3c627ea29db7f48c35f 100644 (file)
@@ -158,7 +158,7 @@ public:
                                        const wxString& WXUNUSED(name) )
         { return (wxToolBar*)NULL; }
     virtual wxToolBar *GetToolBar() const { return (wxToolBar*)NULL; }
-#endif
+#endif // wxUSE_TOOLBAR
 
     // no icon
     void SetIcon( const wxIcon &icon ) { m_icons = wxIconBundle( icon ); }
@@ -169,10 +169,15 @@ public:
     wxString GetTitle() const { return m_title; }
 
     // no maximize etc
-    virtual void Maximize( bool WXUNUSED(maximize) ) {}
+    virtual void Maximize( bool WXUNUSED(maximize) = true ) { }
+    virtual bool IsMaximized() const { return true; }
+    virtual void Iconize(bool WXUNUSED(iconize) = true) { }
+    virtual bool IsIconized() const { return false; }
+    virtual void SetIcon(const wxIcon& WXUNUSED(icon)) { }
+    virtual void SetIcons(const wxIconBundle& WXUNUSED(icons)) { }
     virtual void Restore() {}
 
-    virtual bool IsTopLevel() const { return FALSE; }
+    virtual bool IsTopLevel() const { return false; }
 
     void OnActivate( wxActivateEvent& event );
     void OnMenuHighlight( wxMenuEvent& event );
index b6e054b6482fff347586b8a3a98a625e78388f52..08ba0abef2182b3ea5bda3c627ea29db7f48c35f 100644 (file)
@@ -158,7 +158,7 @@ public:
                                        const wxString& WXUNUSED(name) )
         { return (wxToolBar*)NULL; }
     virtual wxToolBar *GetToolBar() const { return (wxToolBar*)NULL; }
-#endif
+#endif // wxUSE_TOOLBAR
 
     // no icon
     void SetIcon( const wxIcon &icon ) { m_icons = wxIconBundle( icon ); }
@@ -169,10 +169,15 @@ public:
     wxString GetTitle() const { return m_title; }
 
     // no maximize etc
-    virtual void Maximize( bool WXUNUSED(maximize) ) {}
+    virtual void Maximize( bool WXUNUSED(maximize) = true ) { }
+    virtual bool IsMaximized() const { return true; }
+    virtual void Iconize(bool WXUNUSED(iconize) = true) { }
+    virtual bool IsIconized() const { return false; }
+    virtual void SetIcon(const wxIcon& WXUNUSED(icon)) { }
+    virtual void SetIcons(const wxIconBundle& WXUNUSED(icons)) { }
     virtual void Restore() {}
 
-    virtual bool IsTopLevel() const { return FALSE; }
+    virtual bool IsTopLevel() const { return false; }
 
     void OnActivate( wxActivateEvent& event );
     void OnMenuHighlight( wxMenuEvent& event );