diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 23:37:00 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 23:37:00 +0000 |
commit | b0e912c8b3d02a518fedda28c3180eb4794a7520 (patch) | |
tree | 07d344862562fab58cbe2df39d13d16f2e4d2bea /k9author/k9newtitle.h | |
parent | 4d695ec81fe4d4335ee82c7a9346ad9c9e144ecc (diff) | |
download | k9copy-b0e912c8b3d02a518fedda28c3180eb4794a7520.tar.gz k9copy-b0e912c8b3d02a518fedda28c3180eb4794a7520.zip |
TQt4 convert k9copy
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1233843 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'k9author/k9newtitle.h')
-rw-r--r-- | k9author/k9newtitle.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/k9author/k9newtitle.h b/k9author/k9newtitle.h index 8df44f3..2b24d02 100644 --- a/k9author/k9newtitle.h +++ b/k9author/k9newtitle.h @@ -16,18 +16,19 @@ #include "k9common.h" #include "../k9author/newTitle.h" #include "k9lvitemimport.h" -#include <qstring.h> +#include <tqstring.h> class k9Import; class k9NewTitle : public newTitle { Q_OBJECT + TQ_OBJECT private: k9Import *m_k9Import; - QString m_fileName; - QImage m_image; + TQString m_fileName; + TQImage m_image; public: - k9NewTitle(QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); + k9NewTitle(TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 ); ~k9NewTitle(); void setK9Import ( k9Import* _value ); @@ -41,11 +42,11 @@ protected: protected slots: /*$PROTECTED_SLOTS$*/ - virtual void fileSelected(const QString &); + virtual void fileSelected(const TQString &); virtual void bAddClicked(); virtual void rbNumberClicked(); virtual void rbLengthClicked(); - virtual void drawImage (QImage *_image); + virtual void drawImage (TQImage *_image); }; #endif |