From: Julian Smart Date: Thu, 19 Oct 2006 16:22:54 +0000 (+0000) Subject: Spin control usage correction X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d33700db0c3ca94204481062e03efd4132c98759 Spin control usage correction git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42130 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/richtext/richtextliststylepage.cpp b/src/richtext/richtextliststylepage.cpp index 40638100f1..fc7f91f4ff 100644 --- a/src/richtext/richtextliststylepage.cpp +++ b/src/richtext/richtextliststylepage.cpp @@ -806,11 +806,11 @@ void wxRichTextListStylePage::OnLevelUpdated( wxSpinEvent& WXUNUSED(event) ) * wxEVT_SCROLL_LINEUP event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL */ -void wxRichTextListStylePage::OnLevelUp( wxSpinEvent& WXUNUSED(event) ) +void wxRichTextListStylePage::OnLevelUp( wxSpinEvent& event ) { if (!m_dontUpdate) { - m_currentLevel = m_levelCtrl->GetValue(); + m_currentLevel = event.GetPosition(); TransferDataToWindow(); } } @@ -819,11 +819,11 @@ void wxRichTextListStylePage::OnLevelUp( wxSpinEvent& WXUNUSED(event) ) * wxEVT_SCROLL_LINEDOWN event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL */ -void wxRichTextListStylePage::OnLevelDown( wxSpinEvent& WXUNUSED(event) ) +void wxRichTextListStylePage::OnLevelDown( wxSpinEvent& event ) { if (!m_dontUpdate) { - m_currentLevel = m_levelCtrl->GetValue(); + m_currentLevel = event.GetPosition(); TransferDataToWindow(); } } @@ -832,13 +832,16 @@ void wxRichTextListStylePage::OnLevelDown( wxSpinEvent& WXUNUSED(event) ) * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL */ -void wxRichTextListStylePage::OnLevelTextUpdated( wxCommandEvent& WXUNUSED(event) ) +void wxRichTextListStylePage::OnLevelTextUpdated( wxCommandEvent& event ) { + // Can cause problems +#if 0 if (!m_dontUpdate) { - m_currentLevel = m_levelCtrl->GetValue(); + m_currentLevel = event.GetInt(); TransferDataToWindow(); } +#endif } /*!