From e7d5dd022c9555a097a14bd42dfc5d57467d0864 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sun, 6 May 2001 22:22:47 +0000 Subject: [PATCH] oops, forgot to remove temporary debug printf... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10028 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/src/gizmos/editlbox.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/contrib/src/gizmos/editlbox.cpp b/contrib/src/gizmos/editlbox.cpp index 28a43fa5d1..52a53a9fb0 100644 --- a/contrib/src/gizmos/editlbox.cpp +++ b/contrib/src/gizmos/editlbox.cpp @@ -105,8 +105,9 @@ END_EVENT_TABLE() wxEditableListBox::wxEditableListBox(wxWindow *parent, wxWindowID id, const wxString& label, - const wxPoint& pos, const wxSize& size) - : wxPanel(parent, id, pos, size), m_edittingNew(FALSE) + const wxPoint& pos, const wxSize& size, + const wxString& name) + : wxPanel(parent, id, pos, size, wxTAB_TRAVERSAL, name), m_edittingNew(FALSE) { wxSizer *sizer = new wxBoxSizer(wxVERTICAL); @@ -186,10 +187,7 @@ void wxEditableListBox::OnEndLabelEdit(wxListEvent& event) { m_edittingNew = FALSE; if (!event.GetText().IsEmpty()) - { - printf("X-\n"); m_listCtrl->InsertItem(m_listCtrl->GetItemCount(), _T("")); - } } } -- 2.47.2