X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae3c17b4013e80b99976c750c19fca47729517f6..ea160f01c60cfc879e1ba3ffec76d113a0404603:/interface/wx/iconloc.h diff --git a/interface/wx/iconloc.h b/interface/wx/iconloc.h index 4ed130a56c..e3690f6bdb 100644 --- a/interface/wx/iconloc.h +++ b/interface/wx/iconloc.h @@ -3,12 +3,11 @@ // Purpose: interface of wxIconLocation // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @class wxIconLocation - @wxheader{iconloc.h} wxIconLocation is a tiny class describing the location of an (external, i.e. not embedded into the application resources) icon. For most platforms it simply @@ -23,7 +22,7 @@ a wxIcon from it. @library{wxbase} - @category{FIXME} + @category{gdi} @see wxIcon, wxFileType::GetIcon */ @@ -31,9 +30,13 @@ class wxIconLocation { public: /** - Returns @true if the object is valid, i.e. was properly initialized, and + Returns @true if the object is valid, i.e.\ was properly initialized, and @false otherwise. */ bool IsOk() const; + + void SetFileName(const wxString& filename); + const wxString& GetFileName() const; + };