summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/keychooser/ckeyreferencewidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/keychooser/ckeyreferencewidget.h')
-rw-r--r--bibletime/frontend/keychooser/ckeyreferencewidget.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/bibletime/frontend/keychooser/ckeyreferencewidget.h b/bibletime/frontend/keychooser/ckeyreferencewidget.h
index bcb6bb9..0025945 100644
--- a/bibletime/frontend/keychooser/ckeyreferencewidget.h
+++ b/bibletime/frontend/keychooser/ckeyreferencewidget.h
@@ -15,8 +15,8 @@
#include "cscrollerwidgetset.h"
#include "backend/cswordbiblemoduleinfo.h"
-#include <qwidget.h>
-#include <qlayout.h>
+#include <tqwidget.h>
+#include <tqlayout.h>
#include <klineedit.h>
#include <kcompletion.h>
@@ -28,8 +28,8 @@ class CKeyReferenceCompletion : public KCompletion {
Q_OBJECT
public:
CKeyReferenceCompletion(CSwordBibleModuleInfo*);
- QString makeCompletion(const QString &);
- QStringList allMatches();
+ TQString makeCompletion(const TQString &);
+ TQStringList allMatches();
private:
CSwordVerseKey *m_key;
CSwordBibleModuleInfo *m_module;
@@ -38,17 +38,17 @@ private:
class CKeyReferenceLineEdit : public KLineEdit {
Q_OBJECT
public:
- CKeyReferenceLineEdit(QWidget *parent=0, const char *name=0);
- void makeCompletion(const QString &);
+ CKeyReferenceLineEdit(TQWidget *parent=0, const char *name=0);
+ void makeCompletion(const TQString &);
};
-class CKeyReferenceWidget : public QWidget {
+class CKeyReferenceWidget : public TQWidget {
Q_OBJECT
public:
/**
* the constructor
*/
- CKeyReferenceWidget(CSwordBibleModuleInfo *, CSwordVerseKey*, QWidget *parent=0, const char *name=0);
+ CKeyReferenceWidget(CSwordBibleModuleInfo *, CSwordVerseKey*, TQWidget *parent=0, const char *name=0);
bool setKey(CSwordVerseKey* key);
KLineEdit* textbox();
void setModule(CSwordBibleModuleInfo *m = 0);
@@ -75,14 +75,14 @@ protected slots: // Protected slots
private:
friend class CLexiconKeyChooser;
- QHBoxLayout *m_mainLayout;
+ TQHBoxLayout *m_mainLayout;
CKeyReferenceLineEdit *m_textbox;
CSwordVerseKey *m_key;
CScrollerWidgetSet *m_bookScroller;
CScrollerWidgetSet *m_chapterScroller;
CScrollerWidgetSet *m_verseScroller;
bool updatelock;
- QString oldKey;
+ TQString oldKey;
CSwordBibleModuleInfo *m_module;
};