diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-06-16 23:54:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-06-17 00:01:26 +0900 |
commit | 7c8f13b0226ba6cda04862d6fd682cc658249b5f (patch) | |
tree | e67c4ef7f6e7e227df532f53e61d0d7c5ab6cf60 /src | |
parent | d6375a54e2945d494df5ad38ca98cbc8b4d901e7 (diff) | |
download | tqt3-7c8f13b0226ba6cda04862d6fd682cc658249b5f.tar.gz tqt3-7c8f13b0226ba6cda04862d6fd682cc658249b5f.zip |
Renamed QT_IM_* to TQT_IM_*. This relates to bug 3020.
(cherry picked and partially edited from commit 632cbaa30ac55924b21d9e65bbe261d592098553)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
-rw-r--r-- | src/kernel/qapplication_x11.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/qapplication_x11.cpp b/src/kernel/qapplication_x11.cpp index 84dcefb22..2ceaa4ef5 100644 --- a/src/kernel/qapplication_x11.cpp +++ b/src/kernel/qapplication_x11.cpp @@ -1131,12 +1131,12 @@ bool TQApplication::x11_apply_settings() /* The identifier name of an input method is acquired from the configuration file as a default. If a environment variable - "QT_IM_SWITCHER" is not empty it will overwrite the + "TQT_IM_SWITCHER" is not empty it will overwrite the configuration file. The "imsw-multi" becomes the default if the entry is not configured. */ - if ( getenv( "QT_IM_SWITCHER" ) ) - defaultIM = getenv( "QT_IM_SWITCHER" ); + if ( getenv( "TQT_IM_SWITCHER" ) ) + defaultIM = getenv( "TQT_IM_SWITCHER" ); #ifndef QT_NO_IM_EXTENSIONS else defaultIM = settings.readEntry( "/qt/DefaultInputMethodSwitcher", "imsw-multi" ); |