Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
20 lines
556 B
C++
20 lines
556 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/x11/minifram.cpp
|
|
// Purpose: wxMiniFrame. Optional; identical to wxFrame if not supported.
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created: 17/09/98
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
#if wxUSE_MINIFRAME
|
|
|
|
#include "wx/minifram.h"
|
|
|
|
wxIMPLEMENT_DYNAMIC_CLASS(wxMiniFrame, wxFrame);
|
|
|
|
#endif // wxUSE_MINIFRAME
|