]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_icon.i
default id's where possible
[wxWidgets.git] / wxPython / src / _icon.i
index bd112d3d98cec215172168b53ed1e917ffbe092d..6a69d79f411992d19c96a542a1149b8b9e7d11b2 100644 (file)
@@ -23,7 +23,7 @@
 class wxIcon : public wxGDIObject
 {
 public:
-    wxIcon(const wxString& name, long flags,
+    wxIcon(const wxString& name, wxBitmapType type,
            int desiredWidth = -1, int desiredHeight = -1);
     ~wxIcon();
 
@@ -51,13 +51,15 @@ public:
 
     
 #ifndef __WXMAC__
-    bool LoadFile(const wxString& name, long flags);
+    bool LoadFile(const wxString& name, wxBitmapType type);
 #endif
 
     // wxGDIImage methods
 #ifdef __WXMSW__
     long GetHandle();
-    void SetHandle(long handle);
+    %extend {
+        void SetHandle(long handle) { self->SetHandle((WXHANDLE)handle); }
+    }
 #endif
     bool Ok();
     int GetWidth();
@@ -93,7 +95,7 @@ public:
     ~wxIconLocation();
 
 
-    // returns true if this object is valid/initialized
+    // returns True if this object is valid/initialized
     bool IsOk() const;
     %pythoncode { def __nonzero__(self): return self.Ok() }