summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/keychooser/ckeychooser.h
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/keychooser/ckeychooser.h')
-rw-r--r--bibletime/frontend/keychooser/ckeychooser.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/bibletime/frontend/keychooser/ckeychooser.h b/bibletime/frontend/keychooser/ckeychooser.h
index c5ad246..2ccb27d 100644
--- a/bibletime/frontend/keychooser/ckeychooser.h
+++ b/bibletime/frontend/keychooser/ckeychooser.h
@@ -12,7 +12,7 @@
#ifndef CKEYCHOOSER_H
#define CKEYCHOOSER_H
-#include <qwidget.h>
+#include <tqwidget.h>
#include "backend/cswordmoduleinfo.h"
@@ -28,7 +28,7 @@ class CSwordKey;
* @author The BibleTime team
*/
-class CKeyChooser : public QWidget {
+class CKeyChooser : public TQWidget {
Q_OBJECT
public:
@@ -41,10 +41,10 @@ public:
* @param key if not NULL, the @ref CKey the KeyChooser should be set to
* @param parent the parent of the widget to create
*/
- static CKeyChooser* createInstance(ListCSwordModuleInfo modules, CSwordKey *key, QWidget *parent);
+ static CKeyChooser* createInstance(ListCSwordModuleInfo modules, CSwordKey *key, TQWidget *parent);
- const QStringList getPreviousKeys() const;
- const QStringList getNextKeys() const;
+ const TQStringList getPreviousKeys() const;
+ const TQStringList getNextKeys() const;
public slots:
/**
@@ -88,14 +88,14 @@ signals:
/**
* Is emitted before the key is changed!
*/
- void beforeKeyChange(const QString& key);
+ void beforeKeyChange(const TQString& key);
void historyChanged();
protected:
/**
* the constructor - DO NOT USE! -- use @ref #createInstance instead!
*/
- CKeyChooser(ListCSwordModuleInfo info, CSwordKey *key=0, QWidget *parent=0, const char *name=0);
+ CKeyChooser(ListCSwordModuleInfo info, CSwordKey *key=0, TQWidget *parent=0, const char *name=0);
virtual ~CKeyChooser();
/**
* Set the appropriate font do display the modules
@@ -103,8 +103,8 @@ protected:
virtual void adjustFont() = 0;
private:
- QStringList m_prevKeyHistoryList;
- QStringList m_nextKeyHistoryList;
+ TQStringList m_prevKeyHistoryList;
+ TQStringList m_nextKeyHistoryList;
int m_currentKeyHistoryPos;
bool m_inHistoryFunction;
protected: