]> git.saurik.com Git - wxWidgets.git/blob - src/gtk1/icon.cpp
Fixes, typos etc...
[wxWidgets.git] / src / gtk1 / icon.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: icon.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifdef __GNUG__
11 #pragma implementation "icon.h"
12 #endif
13
14 #include "wx/icon.h"
15
16 //-----------------------------------------------------------------------------
17 // wxIcon
18 //-----------------------------------------------------------------------------
19
20 IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap)
21
22 wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
23 wxBitmap( bits )
24 {
25 }
26
27 wxIcon::wxIcon() : wxBitmap()
28 {
29 }
30
31 wxIcon::wxIcon(const wxIcon& icon) : wxBitmap()
32 {
33 Ref(icon);
34 }
35
36 wxIcon::wxIcon(const wxIcon* icon) : wxBitmap()
37 {
38 if (icon) Ref(*icon);
39 }
40
41 wxIcon& wxIcon::operator = (const wxIcon& icon)
42 {
43 if (*this == icon) return (*this);
44 Ref(icon);
45 return *this;
46 }
47