From b736cc351a989ec232c1d4520b9f6d018cf263c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Fri, 28 Sep 2018 20:48:57 +0200 Subject: Inappropriately used TQString::fromUtf8() moved to place where it is needed. The definition of -UTQT_NO_ASCII_CAST is no longer needed. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko (cherry picked from commit f39f545444a1c3b4c315029fbedb118d24010dd0) --- src/MainWidget.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/MainWidget.cpp b/src/MainWidget.cpp index 75afa2d..4008f49 100644 --- a/src/MainWidget.cpp +++ b/src/MainWidget.cpp @@ -398,10 +398,10 @@ MainWidget::MainWidget ( TDEAboutData *about, bool tren, TQWidget *parent, const setFocusPolicy ( TQ_NoFocus ); - - int padx= 550; - TQString txt[9] = {"Ho\nme","▲","Pg\nUp","◄"," ","►","End","▼","Pg\nDn"}; + TQString txt[9] = { "Ho\nme", TQString::fromUtf8("▲"), "Pg\nUp", + TQString::fromUtf8("◄"), " ", TQString::fromUtf8("►"), + "End", TQString::fromUtf8("▼"), "Pg\nDn" }; TQString nump[9] = {"7","8","9","4","5","6","1","2","3"}; int val=0; int nval[9] = {16,17,18,13,14,15,10,11,12}; @@ -412,8 +412,8 @@ MainWidget::MainWidget ( TDEAboutData *about, bool tren, TQWidget *parent, const v->move(padx+(b*35),sty+(a*35)); v->res(); v->setKeyCode(nval[val],cval[val]); - v->setText(TQString::fromUtf8(txt[val])); - v->setShiftText(TQString::fromUtf8(nump[val])); + v->setText(txt[val]); + v->setShiftText(nump[val]); numl_keys.append(v); connect ( v, TQT_SIGNAL ( keyClick ( unsigned int ) ), this, TQT_SLOT ( keyPress ( unsigned int ) ) ); val++; -- cgit v1.2.1