]> git.saurik.com Git - wxWidgets.git/blame - src/qt/icon.cpp
Since wxREADONLY has disappeared, I had to change to wxTE_READONLY
[wxWidgets.git] / src / qt / icon.cpp
CommitLineData
7c78e7c7
RR
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