diff options
Diffstat (limited to 'kbabel/common/catalog_private.h')
-rw-r--r-- | kbabel/common/catalog_private.h | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/kbabel/common/catalog_private.h b/kbabel/common/catalog_private.h index 645353f3..153c8486 100644 --- a/kbabel/common/catalog_private.h +++ b/kbabel/common/catalog_private.h @@ -35,12 +35,12 @@ #ifndef CATALOGPRIVATE_H #define CATALOGPRIVATE_H -#include <qintcache.h> -#include <qobject.h> -#include <qptrlist.h> -#include <qstringlist.h> -#include <qmap.h> -#include <qvaluevector.h> +#include <tqintcache.h> +#include <tqobject.h> +#include <tqptrlist.h> +#include <tqstringlist.h> +#include <tqmap.h> +#include <tqvaluevector.h> #include <kurl.h> #include "msgfmt.h" @@ -66,20 +66,20 @@ public: /** url of the po-file, that belongs to this catalog */ KURL _url; - QString _packageName; - QString _packageDir; + TQString _packageName; + TQString _packageDir; /** holds the entries in the catalog */ - QValueVector<CatalogItem> _entries; + TQValueVector<CatalogItem> _entries; /** The header of the po-file. */ CatalogItem _header; /** list of obsolete entries */ - QValueList<CatalogItem> _obsoleteEntries; + TQValueList<CatalogItem> _obsoleteEntries; /** identification string for used import filter*/ - QString _importID; - QString _mimeTypes; + TQString _importID; + TQString _mimeTypes; bool _modified; bool _readOnly; @@ -87,34 +87,34 @@ public: bool _active; bool _stop; - QValueList<uint> _fuzzyIndex; - QValueList<uint> _untransIndex; - QValueList<uint> _errorIndex; + TQValueList<uint> _fuzzyIndex; + TQValueList<uint> _untransIndex; + TQValueList<uint> _errorIndex; - QPtrList<CatalogView> _views; + TQPtrList<CatalogView> _views; TagSettings _tagSettings; - QPtrList<EditCommand> _undoList; - QPtrList<EditCommand> _redoList; + TQPtrList<EditCommand> _undoList; + TQPtrList<EditCommand> _redoList; - QTextCodec *fileCodec; + TQTextCodec *fileCodec; - QStringList msgidDiffList; - QMap< QString, QStringList > msgstr2MsgidDiffList; - QIntCache<QString> diffCache; + TQStringList msgidDiffList; + TQMap< TQString, TQStringList > msgstr2MsgidDiffList; + TQIntCache<TQString> diffCache; int numberOfPluralForms; Project::Ptr _project; RegExpExtractor *_tagExtractor, *_argExtractor; - QStringList _catalogExtra; + TQStringList _catalogExtra; CatalogPrivate(Project::Ptr project) : - _packageName( QString::null ), _packageDir( QString::null ), + _packageName( TQString::null ), _packageDir( TQString::null ), _header (project), - _importID( QString::null ), _mimeTypes( "text/plain" ), + _importID( TQString::null ), _mimeTypes( "text/plain" ), _modified(false), _readOnly(false), _generatedFromDocbook(false), _active(false), _stop(false), fileCodec(0), diffCache(30,76), numberOfPluralForms(-1), @@ -129,8 +129,8 @@ public: _undoList.setAutoDelete(true); _redoList.setAutoDelete(true); - _tagExtractor = new RegExpExtractor(QStringList()); - _argExtractor = new RegExpExtractor(QStringList()); + _tagExtractor = new RegExpExtractor(TQStringList()); + _argExtractor = new RegExpExtractor(TQStringList()); _catalogExtra.clear(); } |