// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "xh_choicbk.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
wxChoicebookXmlHandler::wxChoicebookXmlHandler()
: wxXmlResourceHandler(), m_isInside(false), m_choicebook(NULL)
{
- XRC_ADD_STYLE(wxCB_DEFAULT);
- XRC_ADD_STYLE(wxCB_LEFT);
- XRC_ADD_STYLE(wxCB_RIGHT);
- XRC_ADD_STYLE(wxCB_TOP);
- XRC_ADD_STYLE(wxCB_BOTTOM);
+ XRC_ADD_STYLE(wxCHB_DEFAULT);
+ XRC_ADD_STYLE(wxCHB_LEFT);
+ XRC_ADD_STYLE(wxCHB_RIGHT);
+ XRC_ADD_STYLE(wxCHB_TOP);
+ XRC_ADD_STYLE(wxCHB_BOTTOM);
AddWindowStyles();
}