]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/icon.h
no message
[wxWidgets.git] / include / wx / msw / icon.h
index f7119fa44a951e2eb5d761823115c0c574a6e93a..78fd6c42be9b24712508a85d5a56a2fe2154d19b 100644 (file)
@@ -5,12 +5,12 @@
 // Modified by:
 // Created:     01/02/97
 // RCS-ID:      $Id$
 // Modified by:
 // Created:     01/02/97
 // RCS-ID:      $Id$
-// Copyright:   (c) Julian Smart and Markus Holzem
-// Licence:    wxWindows license
+// Copyright:   (c) Julian Smart
+// Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /////////////////////////////////////////////////////////////////////////////
 
-#ifndef __ICONH__
-#define __ICONH__
+#ifndef _WX_ICON_H_
+#define _WX_ICON_H_
 
 #ifdef __GNUG__
 #pragma interface "icon.h"
 
 #ifdef __GNUG__
 #pragma interface "icon.h"
@@ -43,14 +43,13 @@ public:
 
   // Copy constructors
   inline wxIcon(const wxIcon& icon) { Ref(icon); }
 
   // Copy constructors
   inline wxIcon(const wxIcon& icon) { Ref(icon); }
-  inline wxIcon(const wxIcon* icon) { /* UnRef(); */ if (icon) Ref(*icon); }
 
 
-  wxIcon(const char bits[], const int width, const int height);
-  wxIcon(const wxString& name, const long flags = wxBITMAP_TYPE_ICO_RESOURCE,
+  wxIcon(const char bits[], int width, int height);
+  wxIcon(const wxString& name, long flags = wxBITMAP_TYPE_ICO_RESOURCE,
     int desiredWidth = -1, int desiredHeight = -1);
   ~wxIcon(void);
 
     int desiredWidth = -1, int desiredHeight = -1);
   ~wxIcon(void);
 
-  bool LoadFile(const wxString& name, const long flags = wxBITMAP_TYPE_ICO_RESOURCE,
+  bool LoadFile(const wxString& name, long flags = wxBITMAP_TYPE_ICO_RESOURCE,
       int desiredWidth = -1, int desiredHeight = -1);
 
   inline wxIcon& operator = (const wxIcon& icon) { if (*this == icon) return (*this); Ref(icon); return *this; }
       int desiredWidth = -1, int desiredHeight = -1);
 
   inline wxIcon& operator = (const wxIcon& icon) { if (*this == icon) return (*this); Ref(icon); return *this; }
@@ -78,7 +77,7 @@ public:
        m_type = wxBITMAP_TYPE_ICO;
   };
 
        m_type = wxBITMAP_TYPE_ICO;
   };
 
-  virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, const long flags,
+  virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
       int desiredWidth = -1, int desiredHeight = -1);
 };
 
       int desiredWidth = -1, int desiredHeight = -1);
 };
 
@@ -93,10 +92,10 @@ public:
        m_type = wxBITMAP_TYPE_ICO_RESOURCE;
   };
 
        m_type = wxBITMAP_TYPE_ICO_RESOURCE;
   };
 
-  virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, const long flags,
+  virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
       int desiredWidth = -1, int desiredHeight = -1);
 
 };
 
 #endif
       int desiredWidth = -1, int desiredHeight = -1);
 
 };
 
 #endif
-    // __ICONH__
+    // _WX_ICON_H_