X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a1d5aa9361ecbbe6715ef29d8c69ddaa8a00d4ba..14619f10b0bdb630206607abd0ce0319d45e095a:/samples/widgets/odcombobox.cpp?ds=inline diff --git a/samples/widgets/odcombobox.cpp b/samples/widgets/odcombobox.cpp index 1e95683e3b..c29e7e88cc 100644 --- a/samples/widgets/odcombobox.cpp +++ b/samples/widgets/odcombobox.cpp @@ -6,7 +6,7 @@ // Created: Jul-28-2006 // Id: $Id$ // Copyright: (c) 2006 Jaakko Salli -// License: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -541,7 +541,7 @@ void ODComboboxWidgetsPage::CreateCombo() if ( m_chkBitmapbutton->GetValue() ) { - wxBitmap bmpNormal = CreateBitmap(wxColour(0,0,255)); + wxBitmap bmpNormal = CreateBitmap(*wxBLUE); wxBitmap bmpPressed = CreateBitmap(wxColour(0,0,128)); wxBitmap bmpHover = CreateBitmap(wxColour(128,128,255)); m_combobox->SetButtonBitmaps(bmpNormal,m_chkStdbutton->GetValue(),bmpPressed,bmpHover); @@ -764,7 +764,7 @@ void ODComboboxWidgetsPage::OnComboText(wxCommandEvent& event) wxASSERT_MSG( s == m_combobox->GetValue(), wxT("event and combobox values should be the same") ); - if (event.GetEventType() == wxEVT_COMMAND_TEXT_ENTER) + if (event.GetEventType() == wxEVT_TEXT_ENTER) { wxLogMessage(wxT("OwnerDrawnCombobox enter pressed (now '%s')"), s.c_str()); }