From a84c0558d8dfefef0c711ea5ac3bfdd666f13f7b Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 22 Apr 2003 20:25:58 +0000 Subject: [PATCH] tooltips should be translated git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20311 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/src/gizmos/editlbox.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/src/gizmos/editlbox.cpp b/contrib/src/gizmos/editlbox.cpp index e7d6160a03..d457cfbe44 100644 --- a/contrib/src/gizmos/editlbox.cpp +++ b/contrib/src/gizmos/editlbox.cpp @@ -158,11 +158,11 @@ wxEditableListBox::wxEditableListBox(wxWindow *parent, wxWindowID id, subsizer->Add(m_bDown, 0, wxALIGN_CENTRE_VERTICAL | wxTOP | wxBOTTOM, BTN_BORDER); #if wxUSE_TOOLTIPS - if ( m_bEdit ) m_bEdit->SetToolTip(wxT("Edit item")); - if ( m_bNew ) m_bNew->SetToolTip(wxT("New item")); - if ( m_bDel ) m_bDel->SetToolTip(wxT("Delete item")); - m_bUp->SetToolTip(wxT("Move up")); - m_bDown->SetToolTip(wxT("Move down")); + if ( m_bEdit ) m_bEdit->SetToolTip(_("Edit item")); + if ( m_bNew ) m_bNew->SetToolTip(_("New item")); + if ( m_bDel ) m_bDel->SetToolTip(_("Delete item")); + m_bUp->SetToolTip(_("Move up")); + m_bDown->SetToolTip(_("Move down")); #endif subp->SetAutoLayout(TRUE); -- 2.45.2