diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-18 23:43:22 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-18 23:43:22 +0000 |
commit | 88ea2c636db2bebed82155198f8710617686d6ec (patch) | |
tree | 01f5de7d2cfb17ae3f9a1928c326aaa78127be84 /common/config_file.c | |
parent | 3cc48991fa0c289ef13f3afbd5661539a9093dd4 (diff) | |
download | tde-style-qtcurve-88ea2c636db2bebed82155198f8710617686d6ec.tar.gz tde-style-qtcurve-88ea2c636db2bebed82155198f8710617686d6ec.zip |
Fix a number of strings in Trinity that were incorrectly converted to TQ* from Q*v3.5.13
This fixes the Kopete MSN protocol among other things
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-style-qtcurve@1254372 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'common/config_file.c')
-rw-r--r-- | common/config_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/config_file.c b/common/config_file.c index a144ae6..126838f 100644 --- a/common/config_file.c +++ b/common/config_file.c @@ -1599,7 +1599,7 @@ static bool readConfig(const char *file, Options *opts, Options *defOpts) #ifdef __cplusplus if(file.isEmpty()) { - const char *env=getenv("TQTCURVE_CONFIG_FILE"); + const char *env=getenv("QTCURVE_CONFIG_FILE"); if(NULL!=env) return readConfig(env, opts, defOpts); @@ -1620,7 +1620,7 @@ static bool readConfig(const char *file, Options *opts, Options *defOpts) #else if(!file) { - const char *env=getenv("TQTCURVE_CONFIG_FILE"); + const char *env=getenv("QTCURVE_CONFIG_FILE"); if(NULL!=env) return readConfig(env, opts, defOpts); |