diff options
Diffstat (limited to 'src/pluginloader/formatinfoloader.h')
-rwxr-xr-x | src/pluginloader/formatinfoloader.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/pluginloader/formatinfoloader.h b/src/pluginloader/formatinfoloader.h index f36f7fe..583cb9c 100755 --- a/src/pluginloader/formatinfoloader.h +++ b/src/pluginloader/formatinfoloader.h @@ -3,9 +3,9 @@ #ifndef FORMATINFOLOADER_H #define FORMATINFOLOADER_H -#include <qobject.h> -#include <qstringlist.h> -#include <qdom.h> +#include <tqobject.h> +#include <tqstringlist.h> +#include <tqdom.h> /** * @short The complete information about that format @@ -25,10 +25,10 @@ public: */ virtual ~FormatInfo(); - QStringList mime_types; - QStringList extensions; - QString description; - QStringList urls; + TQStringList mime_types; + TQStringList extensions; + TQString description; + TQStringList urls; enum CompressionType { lossy = 0x0001, // encode with loss lossless = 0x0002, // encode without loss @@ -42,9 +42,10 @@ public: * @author Daniel Faust <hessijames@gmail.com> * @version 0.3 */ -class FormatInfoLoader : public QObject +class FormatInfoLoader : public TQObject { Q_OBJECT + TQ_OBJECT public: /** * Constructor @@ -57,11 +58,11 @@ public: virtual ~FormatInfoLoader(); /** is this file a converter plugin and loadable? */ - bool verifyFile( QString ); + bool verifyFile( TQString ); /** load a given file */ - FormatInfo* loadFile( QString ); + FormatInfo* loadFile( TQString ); /** the dom tree for loading the xml file */ - QDomDocument domTree; + TQDomDocument domTree; }; #endif // FORMATINFOLOADER_H |