]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk1/icon.cpp
memdc and bitmap fixes
[wxWidgets.git] / src / gtk1 / icon.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: icon.cpp
3// Purpose:
4// Author: Robert Roebling
5// Created: 01/02/97
6// Id:
7// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifdef __GNUG__
12#pragma implementation "icon.h"
13#endif
14
15#include "wx/icon.h"
16
17//-----------------------------------------------------------------------------
18// wxIcon
19//-----------------------------------------------------------------------------
20
21IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap)
22
23wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
24 wxBitmap( bits )
25{
26};
27