summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/keychooser/cbooktreechooser.h
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/keychooser/cbooktreechooser.h')
-rw-r--r--bibletime/frontend/keychooser/cbooktreechooser.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/bibletime/frontend/keychooser/cbooktreechooser.h b/bibletime/frontend/keychooser/cbooktreechooser.h
index 43b03d5..49caa05 100644
--- a/bibletime/frontend/keychooser/cbooktreechooser.h
+++ b/bibletime/frontend/keychooser/cbooktreechooser.h
@@ -23,11 +23,11 @@
//Sword includes
//Qt includes
-#include <qwidget.h>
-#include <qsize.h>
-#include <qmap.h>
-#include <qptrlist.h>
-#include <qstringlist.h>
+#include <tqwidget.h>
+#include <tqsize.h>
+#include <tqmap.h>
+#include <tqptrlist.h>
+#include <tqstringlist.h>
//KDE includes
#include <klistview.h>
@@ -46,7 +46,7 @@ namespace sword {
class CBookTreeChooser : public CKeyChooser {
Q_OBJECT
public:
- CBookTreeChooser(ListCSwordModuleInfo modules, CSwordKey *key=0, QWidget *parent=0, const char *name=0);
+ CBookTreeChooser(ListCSwordModuleInfo modules, CSwordKey *key=0, TQWidget *parent=0, const char *name=0);
~CBookTreeChooser();
/**
* Refreshes the content.
@@ -82,15 +82,15 @@ protected: // Protected methods
virtual void adjustFont();
protected slots: // Protected slots
- void itemActivated( QListViewItem* item );
+ void itemActivated( TQListViewItem* item );
private:
class TreeItem : public KListViewItem {
public:
- TreeItem(QListViewItem* parent, QListViewItem* after, CSwordTreeKey* key, const QString keyName);
- TreeItem(QListViewItem* parent, CSwordTreeKey* key, const QString keyName);
- TreeItem(QListView* view,QListViewItem* after, CSwordTreeKey* key, const QString keyName);
- const QString& key() const;
+ TreeItem(TQListViewItem* parent, TQListViewItem* after, CSwordTreeKey* key, const TQString keyName);
+ TreeItem(TQListViewItem* parent, CSwordTreeKey* key, const TQString keyName);
+ TreeItem(TQListView* view,TQListViewItem* after, CSwordTreeKey* key, const TQString keyName);
+ const TQString& key() const;
void createChilds();
virtual void setOpen(bool);
@@ -101,10 +101,10 @@ protected:
virtual void setup();
private:
CSwordTreeKey* m_key;
- QString m_keyName;
+ TQString m_keyName;
};
- QPtrList<CSwordBookModuleInfo> m_modules;
+ TQPtrList<CSwordBookModuleInfo> m_modules;
CSwordTreeKey* m_key;
KListView* m_treeView;
};