diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
commit | dc6b8e72fed2586239e3514819238c520636c9d9 (patch) | |
tree | 88b200df0a0b7fab9d6f147596173556f1ed9a13 /quanta/dialogs/filecombo.h | |
parent | 6927d4436e54551917f600b706a8d6109e49de1c (diff) | |
download | tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.tar.gz tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'quanta/dialogs/filecombo.h')
-rw-r--r-- | quanta/dialogs/filecombo.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/quanta/dialogs/filecombo.h b/quanta/dialogs/filecombo.h index 9403b808..9ec8198c 100644 --- a/quanta/dialogs/filecombo.h +++ b/quanta/dialogs/filecombo.h @@ -18,7 +18,7 @@ #ifndef FILECOMBO_H #define FILECOMBO_H -#include <qwidget.h> +#include <tqwidget.h> #include <kurl.h> /** @@ -29,15 +29,15 @@ class QComboBox; class QPushButton; class KURL; -class FileCombo : public QWidget { +class FileCombo : public TQWidget { Q_OBJECT public: - FileCombo(const KURL& a_baseURL, QWidget *parent=0, const char *name=0); - FileCombo(QWidget *parent=0, const char *name=0); + FileCombo(const KURL& a_baseURL, TQWidget *parent=0, const char *name=0); + FileCombo(TQWidget *parent=0, const char *name=0); ~FileCombo(); - QString text() const; - void setText( const QString &); + TQString text() const; + void setText( const TQString &); /** The select URL dialogs shows this URL, and the returned value is relative to this */ void setBaseURL(const KURL& a_baseURL); /** The selected URL will be stored with absolute path if absolutePath is true */ @@ -45,17 +45,17 @@ public: public slots: void slotFileSelect(); - void slotComboActivated(const QString&); + void slotComboActivated(const TQString&); signals: - void activated(const QString&); + void activated(const TQString&); protected: KURL baseURL; bool m_absolutePath; - QComboBox *combo; - QPushButton *button; + TQComboBox *combo; + TQPushButton *button; }; |