From: Václav Slavík Date: Mon, 17 Dec 2001 23:42:59 +0000 (+0000) Subject: it doesn't make sense to have translatable string in wxFAIL_MSG... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/501d97d4fe75b1919113cebc831c9a06fe356412 it doesn't make sense to have translatable string in wxFAIL_MSG... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13070 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/src/gizmos/ledctrl.cpp b/contrib/src/gizmos/ledctrl.cpp index 5c93feb7fb..c33d38e7ab 100644 --- a/contrib/src/gizmos/ledctrl.cpp +++ b/contrib/src/gizmos/ledctrl.cpp @@ -230,7 +230,7 @@ void wxLEDNumberCtrl::OnPaint(wxPaintEvent &Event) // just skip it break; default : - wxFAIL_MSG(_("Unknown digit value")); + wxFAIL_MSG(wxT("Unknown digit value")); break; } } @@ -344,7 +344,7 @@ void wxLEDNumberCtrl::RecalcInternals(const wxSize &CurrentSize) m_LeftStartPos = (ClientWidth - ValueWidth) / 2; break; default : - wxFAIL_MSG(_("Unknown alignent value for wxLEDNumberCtrl.")); + wxFAIL_MSG(wxT("Unknown alignent value for wxLEDNumberCtrl.")); break; } }