diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-25 11:21:54 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-25 11:21:54 +0900 |
commit | e0df02598b8e19d8b6ddf07fdbca661489ab2e99 (patch) | |
tree | c71373a4969af9527789666f0ff31d24ff175671 /lib/kofficecore | |
parent | a7ea84c97639f635d798348432f355e3ac496a1d (diff) | |
download | koffice-e0df02598b8e19d8b6ddf07fdbca661489ab2e99.tar.gz koffice-e0df02598b8e19d8b6ddf07fdbca661489ab2e99.zip |
Drop USE_TQT4 code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib/kofficecore')
-rw-r--r-- | lib/kofficecore/KoFilterManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kofficecore/KoFilterManager.cpp b/lib/kofficecore/KoFilterManager.cpp index 06c7cf10..e22d5f3e 100644 --- a/lib/kofficecore/KoFilterManager.cpp +++ b/lib/kofficecore/KoFilterManager.cpp @@ -493,7 +493,7 @@ TQStringList KoFilterManager::mimeFilter( const TQCString& mimetype, Direction d const TQStringList outMimes = connected( vertices, (*natit).latin1() ); //kdDebug(s_area) << k_funcinfo << "output formats connected to mime " << *natit << " : " << outMimes << endl; for ( TQStringList::ConstIterator mit = outMimes.begin(); mit != outMimes.end(); ++mit ) - if ( lst.find( *mit ) == lst.end() ) // append only if not there already. TQt4: TQSet<TQString>? + if ( lst.find( *mit ) == lst.end() ) // append only if not there already. lst.append( *mit ); } return lst; |