]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/iconloc.h
Make storing non-trivial data in wxThreadSpecificInfo possible.
[wxWidgets.git] / interface / wx / iconloc.h
index 1e798629aa002a888f3e8d31a0f590a88ab77c7a..c9346c24941a0c5df654b15d8f08a20b1050bf1d 100644 (file)
@@ -2,8 +2,7 @@
 // Name:        iconloc.h
 // Purpose:     interface of wxIconLocation
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
@@ -22,7 +21,7 @@
     a wxIcon from it.
 
     @library{wxbase}
-    @category{FIXME}
+    @category{gdi}
 
     @see wxIcon, wxFileType::GetIcon
 */
@@ -30,9 +29,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;
+
 };