summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2024-03-02 06:57:42 +0300
committerSlávek Banko <slavek.banko@axis.cz>2024-03-02 13:42:19 +0100
commit7b575b58e5c8e9427dcd9f748244a0881451bf51 (patch)
tree9333dad3356d9df0df06208c62fd9e6a0f334ea8 /tools
parent53a1dfa82bee1dc579d38bf4bc4104e94c1ff7c5 (diff)
downloadtqt3-7b575b58e5c8e9427dcd9f748244a0881451bf51.tar.gz
tqt3-7b575b58e5c8e9427dcd9f748244a0881451bf51.zip
avoid translating the /qt/XIMInputStyle options when saving into config
Also use "On The Spot" as the default when the setting in the config is incorrect. Signed-off-by: Alexander Golubev <fatzer2@gmail.com> (cherry picked from commit 34587584ab80fd696cc9d73dda1326f175125ddf)
Diffstat (limited to 'tools')
-rw-r--r--tools/qtconfig/mainwindow.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/qtconfig/mainwindow.cpp b/tools/qtconfig/mainwindow.cpp
index b01b0dba0..9a1d0044a 100644
--- a/tools/qtconfig/mainwindow.cpp
+++ b/tools/qtconfig/mainwindow.cpp
@@ -376,7 +376,8 @@ MainWindow::MainWindow()
rtlExtensions->setChecked( settings.readBoolEntry( "/qt/useRtlExtensions", FALSE ) );
#if defined(TQ_WS_X11)
- inputStyle->setCurrentText( settings.readEntry( "/qt/XIMInputStyle", trUtf8( "On The Spot" ) ) );
+ inputStyle->setCurrentText( trUtf8(
+ settings.readEntry( "/qt/XIMInputStyle", TQString::fromLatin1( "On The Spot" ) ) ) );
#else
inputStyle->hide();
inputStyleLabel->hide();
@@ -517,7 +518,7 @@ void MainWindow::fileSave()
str = "Off The Spot";
else if ( style == trUtf8( "Root" ) )
str = "Root";
- settings.writeEntry( "/qt/XIMInputStyle", inputStyle->currentText() );
+ settings.writeEntry( "/qt/XIMInputStyle", str );
#if !defined(TQT_NO_IM_EXTENSIONS)
TQString imSwitcher = settings.readEntry("/qt/DefaultInputMethodSwitcher", "imsw-multi");