summaryrefslogtreecommitdiffstats
path: root/systemsettings/mainwindow.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2020-08-05 18:25:38 +0200
committerSlávek Banko <slavek.banko@axis.cz>2020-08-08 22:18:39 +0200
commit7dc39a65c9fff0e75651a22e3bb98e31a22032bc (patch)
treea754d7cc61dd567ee2a66180b5e276fd1e4a9f1a /systemsettings/mainwindow.cpp
parentedb775bf0df3f6a5804803e6e2ecb32d3627b23c (diff)
downloadtde-systemsettings-7dc39a65c9fff0e75651a22e3bb98e31a22032bc.tar.gz
tde-systemsettings-7dc39a65c9fff0e75651a22e3bb98e31a22032bc.zip
Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 450fd249dd5cce5efc21f49ba1d3e5741d527750)
Diffstat (limited to 'systemsettings/mainwindow.cpp')
-rw-r--r--systemsettings/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/systemsettings/mainwindow.cpp b/systemsettings/mainwindow.cpp
index 2886def..082a7be 100644
--- a/systemsettings/mainwindow.cpp
+++ b/systemsettings/mainwindow.cpp
@@ -175,7 +175,7 @@ void MainWindow::buildActions()
}
TDERadioAction *newAction = new TDERadioAction( group->caption(), group->icon(), TDEShortcut(), TQT_TQOBJECT(this),
- TQT_SLOT(slotTopPage()), actionCollection(), group->relPath() );
+ TQT_SLOT(slotTopPage()), actionCollection(), group->relPath().utf8() );
pageActions.append(newAction);
kdDebug() << "relpath is :" << group->relPath() << endl;
}