From 28b9bd356d9946eb50554504daf02bc83cc38450 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 29 Mar 2003 19:17:46 +0000 Subject: [PATCH] Forgot to remove the "virtual" for binary compatibility... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19873 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/gtk/toplevel.h | 2 +- include/wx/gtk1/toplevel.h | 2 +- include/wx/mac/toplevel.h | 2 +- include/wx/msw/toplevel.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/wx/gtk/toplevel.h b/include/wx/gtk/toplevel.h index 0271b4c353..e6af7626d5 100644 --- a/include/wx/gtk/toplevel.h +++ b/include/wx/gtk/toplevel.h @@ -60,7 +60,7 @@ public: virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); virtual bool IsFullScreen() const { return m_fsIsShowing; }; - virtual bool SetShape(const wxRegion& region); + /*virtual*/ bool SetShape(const wxRegion& region); virtual bool Show(bool show = TRUE); diff --git a/include/wx/gtk1/toplevel.h b/include/wx/gtk1/toplevel.h index 0271b4c353..e6af7626d5 100644 --- a/include/wx/gtk1/toplevel.h +++ b/include/wx/gtk1/toplevel.h @@ -60,7 +60,7 @@ public: virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); virtual bool IsFullScreen() const { return m_fsIsShowing; }; - virtual bool SetShape(const wxRegion& region); + /*virtual*/ bool SetShape(const wxRegion& region); virtual bool Show(bool show = TRUE); diff --git a/include/wx/mac/toplevel.h b/include/wx/mac/toplevel.h index 800a42004e..046e4fe8b5 100644 --- a/include/wx/mac/toplevel.h +++ b/include/wx/mac/toplevel.h @@ -58,7 +58,7 @@ public: virtual void SetIcons(const wxIconBundle& icons) { SetIcon( icons.GetIcon( -1 ) ); } virtual void Restore(); - virtual bool SetShape(const wxRegion& region); + /*virtual*/ bool SetShape(const wxRegion& region); virtual bool ShowFullScreen(bool WXUNUSED(show), long WXUNUSED(style) = wxFULLSCREEN_ALL) { return FALSE; } diff --git a/include/wx/msw/toplevel.h b/include/wx/msw/toplevel.h index 19a1f223f1..047d5d44ba 100644 --- a/include/wx/msw/toplevel.h +++ b/include/wx/msw/toplevel.h @@ -58,7 +58,7 @@ public: virtual void SetIcons(const wxIconBundle& icons ); virtual void Restore(); - virtual bool SetShape(const wxRegion& region); + /*virtual*/ bool SetShape(const wxRegion& region); virtual bool Show(bool show = TRUE);