summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/filecombo.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/dialogs/filecombo.h')
-rw-r--r--quanta/dialogs/filecombo.h20
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;
};