diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-25 18:15:15 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-25 18:15:15 +0900 |
commit | 0fc9d37b2bd1bd32f3b975af0859e9dd248dc57b (patch) | |
tree | 23458fa9a62eeb6c482f794c942a5ead7bfd9e00 /kbabel | |
parent | 2ceb4caa0bdb7828fdc87dca7b5a719279e23398 (diff) | |
download | tdesdk-0fc9d37b2bd1bd32f3b975af0859e9dd248dc57b.tar.gz tdesdk-0fc9d37b2bd1bd32f3b975af0859e9dd248dc57b.zip |
Drop USE_TQT4 code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbabel')
-rw-r--r-- | kbabel/common/poinfo.cpp | 4 | ||||
-rw-r--r-- | kbabel/filters/gettext/gettextimport.cpp | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/kbabel/common/poinfo.cpp b/kbabel/common/poinfo.cpp index 535292db..17d930d9 100644 --- a/kbabel/common/poinfo.cpp +++ b/kbabel/common/poinfo.cpp @@ -305,7 +305,7 @@ PoInfo PoInfo::headerInfo(const CatalogItem& headerItem) TQString value=(*it).mid(res+1); // "Chop" the \n at the end if (value.endsWith("\\n")) - value.remove(value.length()-2,2); // ### TQt4: use value.chop(2) + value.remove(value.length()-2,2); value=value.simplifyWhiteSpace(); kdDebug(KBABEL) << "Header key: " << key << " value: " << value << endl; if (key=="Project-Id-Version") @@ -335,7 +335,7 @@ PoInfo PoInfo::headerInfo(const CatalogItem& headerItem) TQString line=(*it); if(line.right(2)=="\\n") - line.remove(line.length()-2,2); // ### TQt4: use value.chop(2) + line.remove(line.length()-2,2); if(!info.others.isEmpty()) info.others+='\n'; diff --git a/kbabel/filters/gettext/gettextimport.cpp b/kbabel/filters/gettext/gettextimport.cpp index cf44b248..fb59fb4b 100644 --- a/kbabel/filters/gettext/gettextimport.cpp +++ b/kbabel/filters/gettext/gettextimport.cpp @@ -406,7 +406,6 @@ ConversionStatus GettextImportPlugin::readEntry(TQTextStream& stream) //kdDebug() << "Parsing line: " << line << endl; - // ### TQt4: no need of a such a check if(line.isNull()) // file end break; else if ( line.startsWith( "<<<<<<<" ) || line.startsWith( "=======" ) || line.startsWith( ">>>>>>>" ) ) |