]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/tglbtn.cpp
Add wxFontInfo class to allow using named parameters for wxFont creation.
[wxWidgets.git] / src / msw / tglbtn.cpp
index e4effb9ff07328cd2c307a210e6c0f4a199b7917..9fba62178c50925341b857fef3b0b76320524b86 100644 (file)
@@ -45,7 +45,7 @@
 // macros
 // ----------------------------------------------------------------------------
 
-wxDEFINE_EVENT( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, wxCommandEvent );
+wxDEFINE_EVENT( wxEVT_TOGGLEBUTTON, wxCommandEvent );
 
 // ============================================================================
 // implementation
@@ -179,7 +179,7 @@ bool wxToggleButton::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
     // auto checkboxes so do it ourselves in any case
     m_state = !m_state;
 
-    wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, m_windowId);
+    wxCommandEvent event(wxEVT_TOGGLEBUTTON, m_windowId);
     event.SetInt(GetValue());
     event.SetEventObject(this);
     ProcessCommand(event);