diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmserializer.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmserializer.h')
-rw-r--r-- | kpovmodeler/pmserializer.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kpovmodeler/pmserializer.h b/kpovmodeler/pmserializer.h index 73e509d8..4c579364 100644 --- a/kpovmodeler/pmserializer.h +++ b/kpovmodeler/pmserializer.h @@ -23,12 +23,12 @@ #include <config.h> #endif -class QIODevice; +class TQIODevice; #include "pmobject.h" #include "pmerrordialog.h" -#include <qdict.h> +#include <tqdict.h> /** @@ -50,7 +50,7 @@ public: * * The serialized data will be written to the io device */ - PMSerializer( QIODevice* dev ); + PMSerializer( TQIODevice* dev ); /** * Destructor */ @@ -60,7 +60,7 @@ public: * the same string as description( ) of the corresponding * IO format. */ - virtual QString description( ) const = 0; + virtual TQString description( ) const = 0; /** * Serializes one object to the device @@ -101,20 +101,20 @@ public: /** * Adds an error to the message string */ - void printError( const QString& msg ); + void printError( const TQString& msg ); /** * Adds a warning to the message string */ - void printWarning( const QString& msg ); + void printWarning( const TQString& msg ); /** * Adds an info to the message string */ - void printInfo( const QString& msg ); + void printInfo( const TQString& msg ); /** * Adds the message to the message string. Type is "error", "warning", * "info" */ - void printMessage( const QString& type, const QString& msg ); + void printMessage( const TQString& type, const TQString& msg ); /** * Sets the fatal error flag @@ -142,7 +142,7 @@ protected: /** * The assigned IO device for serialization */ - QIODevice* m_pDev; + TQIODevice* m_pDev; private: /** @@ -152,7 +152,7 @@ private: /** * A dictionary object -> message */ - QPtrDict< QPtrList<PMMessage> > m_messageDict; + TQPtrDict< TQPtrList<PMMessage> > m_messageDict; /** * Number of warnings during parsing */ |