// Author: Mattia Barbon
// Modified by:
// Created: 10.02.03
-// RCS-ID: $Id$
// Copyright: (c) 2003 Mattia Barbon
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/checkbox.h"
-class WXDLLEXPORT wxToggleButton : public wxCheckBox
+class WXDLLIMPEXP_CORE wxToggleButton : public wxCheckBox
{
public:
wxToggleButton() { Init(); }
// common part of all constructors
void Init()
{
- m_evtType = wxEVT_COMMAND_TOGGLEBUTTON_CLICKED;
+ m_evtType = wxEVT_TOGGLEBUTTON;
}
};