made wxTLW::SetIcon() non-virtual, it was already implemented in terms of

SetIcons() in most of the ports, now do it in all of them


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-04-07 23:40:55 +00:00
parent 6a7d4d7190
commit ea098413d0
24 changed files with 31 additions and 79 deletions

View File

@@ -145,16 +145,16 @@ public:
virtual bool IsIconized() const = 0;
// get the frame icon
wxIcon GetIcon() const { return m_icons.GetIcon( -1 ); }
wxIcon GetIcon() const;
// get the frame icons
const wxIconBundle& GetIcons() const { return m_icons; }
// set the frame icon
virtual void SetIcon(const wxIcon& icon) { m_icons = wxIconBundle( icon ); }
// set the frame icon: implemented in terms of SetIcons()
void SetIcon(const wxIcon& icon);
// set the frame icons
virtual void SetIcons(const wxIconBundle& icons ) { m_icons = icons; }
virtual void SetIcons(const wxIconBundle& icons) { m_icons = icons; }
// maximize the window to cover entire screen
virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) = 0;