summaryrefslogtreecommitdiffstats
path: root/src/kernel/qapplication_x11.cpp
diff options
context:
space:
mode:
authorAlexander Golubev <[email protected]>2024-03-02 06:57:42 +0300
committerSlávek Banko <[email protected]>2024-03-02 13:42:19 +0100
commit7b575b58e5c8e9427dcd9f748244a0881451bf51 (patch)
tree9333dad3356d9df0df06208c62fd9e6a0f334ea8 /src/kernel/qapplication_x11.cpp
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 <[email protected]> (cherry picked from commit 34587584ab80fd696cc9d73dda1326f175125ddf)
Diffstat (limited to 'src/kernel/qapplication_x11.cpp')
-rw-r--r--src/kernel/qapplication_x11.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/qapplication_x11.cpp b/src/kernel/qapplication_x11.cpp
index e224f17ad..2cda2b8b3 100644
--- a/src/kernel/qapplication_x11.cpp
+++ b/src/kernel/qapplication_x11.cpp
@@ -1112,15 +1112,15 @@ bool TQApplication::x11_apply_settings()
if (qt_xim_preferred_style == 0) {
TQString ximInputStyle =
settings.readEntry( "/qt/XIMInputStyle",
- TQObject::trUtf8( "On The Spot" ) ).lower();
- if ( ximInputStyle == "on the spot" )
- qt_xim_preferred_style = XIMPreeditCallbacks | XIMStatusNothing;
- else if ( ximInputStyle == "over the spot" )
+ TQString::fromLatin1( "On The Spot" ) ).lower();
+ if ( ximInputStyle == "over the spot" )
qt_xim_preferred_style = XIMPreeditPosition | XIMStatusNothing;
else if ( ximInputStyle == "off the spot" )
qt_xim_preferred_style = XIMPreeditArea | XIMStatusArea;
else if ( ximInputStyle == "root" )
qt_xim_preferred_style = XIMPreeditNothing | XIMStatusNothing;
+ else // ximInputStyle == "on the spot" or others
+ qt_xim_preferred_style = XIMPreeditCallbacks | XIMStatusNothing;
}
#endif