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 /kcoloredit/kcoloreditdoc.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 'kcoloredit/kcoloreditdoc.h')
-rw-r--r-- | kcoloredit/kcoloreditdoc.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/kcoloredit/kcoloreditdoc.h b/kcoloredit/kcoloreditdoc.h index 1d209f46..03d5ce70 100644 --- a/kcoloredit/kcoloreditdoc.h +++ b/kcoloredit/kcoloreditdoc.h @@ -23,9 +23,9 @@ #endif // include files for QT -#include <qobject.h> -#include <qstring.h> -#include <qptrlist.h> +#include <tqobject.h> +#include <tqstring.h> +#include <tqptrlist.h> // application specific includes #include "palette.h" @@ -50,7 +50,7 @@ class KColorEditDoc : public QObject public: /** Constructor for the fileclass of the application */ - KColorEditDoc(QWidget *parent, const char *name=0); + KColorEditDoc(TQWidget *parent, const char *name=0); /** Destructor for the fileclass of the application */ ~KColorEditDoc(); @@ -71,19 +71,19 @@ class KColorEditDoc : public QObject /** closes the actual document */ void closeDocument(); /** loads the document */ - bool openDocument(const QString& filename); + bool openDocument(const TQString& filename); /** saves the document */ - bool saveDocument(const QString& filename); + bool saveDocument(const TQString& filename); /** sets the path to the file connected with the document */ - void setAbsFilePath(const QString &filename); + void setAbsFilePath(const TQString &filename); /** returns the pathname of the current document file*/ - const QString& absFilePath() const; + const TQString& absFilePath() const; /** sets the filename of the document */ - void setTitle(const QString &_t); + void setTitle(const TQString &_t); /** returns the title of the document */ - const QString& title() const; + const TQString& title() const; /** @return a description of a possible unsuccessfull IO operation */ - const QString& errorString() const; + const TQString& errorString() const; /** returns a pointer to paletteHistory */ PaletteHistory* paletteHistory(); /** sets a palette cursor position */ @@ -115,7 +115,7 @@ class KColorEditDoc : public QObject protected: /** Sets an error string if an IO operation was unsuccesfull */ - void setErrorString(const QString& string); + void setErrorString(const TQString& string); /** Copies a palette to clipboard */ void copyToClipboard(Palette& palette); @@ -136,14 +136,14 @@ class KColorEditDoc : public QObject public: /** the list of the views currently connected to the document */ - QPtrList<KColorEditView> *m_pViewList; + TQPtrList<KColorEditView> *m_pViewList; private: /** the modified flag of the current document */ bool m_modified; - QString m_title; - QString m_absFilePath; - QString m_errorString; + TQString m_title; + TQString m_absFilePath; + TQString m_errorString; protected: Palette m_palette; |