X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f8ab85ae7250169df40accb5e3e1ef3681e63ee9..df18cc7aa1afdbe74d4b8e398d12ef34d1e78b5c:/include/wx/toplevel.h diff --git a/include/wx/toplevel.h b/include/wx/toplevel.h index a4530bd2b8..268ecbd4ad 100644 --- a/include/wx/toplevel.h +++ b/include/wx/toplevel.h @@ -145,16 +145,16 @@ public: virtual bool IsIconized() const = 0; // get the frame icon - const 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;