summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/cinputdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/cinputdialog.h')
-rw-r--r--bibletime/frontend/cinputdialog.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/bibletime/frontend/cinputdialog.h b/bibletime/frontend/cinputdialog.h
index d4b0812..a7b24ae 100644
--- a/bibletime/frontend/cinputdialog.h
+++ b/bibletime/frontend/cinputdialog.h
@@ -15,8 +15,8 @@
//KDE includes
#include <kdialog.h>
-class QTextEdit;
-class QWidget;
+class TQTextEdit;
+class TQWidget;
/** This is a small input dialog with
* a multiline edit for the text input.
@@ -25,19 +25,19 @@ class QWidget;
class CInputDialog : public KDialog {
Q_OBJECT
public:
- CInputDialog(const QString& caption, const QString& description, const QString& text, QWidget *parent=0, const char *name=0, const bool modal = true);
+ CInputDialog(const TQString& caption, const TQString& description, const TQString& text, TQWidget *parent=0, const char *name=0, const bool modal = true);
/**
* A static function to get some using CInputDialog.
*/
- static const QString getText( const QString& caption, const QString& description, const QString& text = QString::null, bool* ok = 0, QWidget* parent = 0, bool modal = true);
+ static const TQString getText( const TQString& caption, const TQString& description, const TQString& text = TQString::null, bool* ok = 0, TQWidget* parent = 0, bool modal = true);
/**
* Returns the text entered at the moment.
*/
- const QString text();
+ const TQString text();
// ~CInputDialog();
private:
- QTextEdit* m_editWidget;
+ TQTextEdit* m_editWidget;
};
#endif