author | zecke <zecke> | 2004-07-07 15:18:14 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-07-07 15:18:14 (UTC) |
commit | ab010081c21f097e436c54ef8786f9abdf764790 (patch) (unidiff) | |
tree | 36934a2aecd6e898c09d3414764efce0e2777915 /development | |
parent | d6ed7f967feb423a91a5c6ea94d54001b33bcd77 (diff) | |
download | opie-ab010081c21f097e436c54ef8786f9abdf764790.zip opie-ab010081c21f097e436c54ef8786f9abdf764790.tar.gz opie-ab010081c21f097e436c54ef8786f9abdf764790.tar.bz2 |
INCLUDEPATH = FOO $$INCLUDEPATH triggered an infinte loop
backport the fix from Qt3.3 for that issue
Add alternative mode to only generate one language...
-rw-r--r-- | development/translation/opie-lupdate/opie-lupdate.pro | 2 | ||||
-rw-r--r-- | development/translation/shared/opie.cpp | 5 | ||||
-rw-r--r-- | development/translation/shared/proparser.cpp | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/development/translation/opie-lupdate/opie-lupdate.pro b/development/translation/opie-lupdate/opie-lupdate.pro index ea51c8b..8360f05 100644 --- a/development/translation/opie-lupdate/opie-lupdate.pro +++ b/development/translation/opie-lupdate/opie-lupdate.pro | |||
@@ -1,3 +1,3 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on console | 2 | CONFIG += qt warn_on console thread |
3 | HEADERS = ../shared/metatranslator.h \ | 3 | HEADERS = ../shared/metatranslator.h \ |
diff --git a/development/translation/shared/opie.cpp b/development/translation/shared/opie.cpp index c5c72d1..c8cea42 100644 --- a/development/translation/shared/opie.cpp +++ b/development/translation/shared/opie.cpp | |||
@@ -18,4 +18,6 @@ OPIE* OPIE::self() { | |||
18 | QStringList OPIE::languageList( const QString& _opieDir )const { | 18 | QStringList OPIE::languageList( const QString& _opieDir )const { |
19 | #if 0 | ||
20 | return QStringList::split(':',QString(::getenv("OPIE_CREATE_LANGS"))); | ||
21 | #else | ||
19 | QString opieDi = opieDir( _opieDir ); | 22 | QString opieDi = opieDir( _opieDir ); |
20 | |||
21 | QStringList langs; | 23 | QStringList langs; |
@@ -33,2 +35,3 @@ QStringList OPIE::languageList( const QString& _opieDir )const { | |||
33 | return langs; | 35 | return langs; |
36 | #endif | ||
34 | } | 37 | } |
diff --git a/development/translation/shared/proparser.cpp b/development/translation/shared/proparser.cpp index f616c5a..bb099bb 100644 --- a/development/translation/shared/proparser.cpp +++ b/development/translation/shared/proparser.cpp | |||
@@ -137,2 +137,3 @@ QMap<QString, QString> proFileTagMap( const QString& text, const QString& opieDi | |||
137 | (*it).replace( i, len, after ); | 137 | (*it).replace( i, len, after ); |
138 | i += after.length(); | ||
138 | } | 139 | } |