summaryrefslogtreecommitdiffstats
path: root/kdeprint/treecombobox.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeprint/treecombobox.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeprint/treecombobox.h')
-rw-r--r--kdeprint/treecombobox.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kdeprint/treecombobox.h b/kdeprint/treecombobox.h
index 78833aee7..398633752 100644
--- a/kdeprint/treecombobox.h
+++ b/kdeprint/treecombobox.h
@@ -20,9 +20,9 @@
#ifndef TREECOMBOBOX_H
#define TREECOMBOBOX_H
-#include <qlistbox.h>
-#include <qcombobox.h>
-#include <qstringlist.h>
+#include <tqlistbox.h>
+#include <tqcombobox.h>
+#include <tqstringlist.h>
/**
* Class that represents a single object in the tree
@@ -30,12 +30,12 @@
class TreeListBoxItem : public QListBoxPixmap
{
public:
- TreeListBoxItem(QListBox *lb, const QPixmap& pix, const QString& txt, bool oneBlock = false);
+ TreeListBoxItem(TQListBox *lb, const TQPixmap& pix, const TQString& txt, bool oneBlock = false);
- virtual int width(const QListBox *lb) const;
+ virtual int width(const TQListBox *lb) const;
protected:
- virtual void paint(QPainter *p);
+ virtual void paint(TQPainter *p);
int stepSize() const { return 16; }
private:
@@ -51,10 +51,10 @@ class TreeListBox : public QListBox
{
friend class TreeListBoxItem;
public:
- TreeListBox(QWidget *parent = 0, const char *name = 0);
+ TreeListBox(TQWidget *parent = 0, const char *name = 0);
protected:
- virtual void paintCell(QPainter *p, int row, int col);
+ virtual void paintCell(TQPainter *p, int row, int col);
private:
bool m_painting;
@@ -66,8 +66,8 @@ private:
class TreeComboBox : public QComboBox
{
public:
- TreeComboBox(QWidget *parent = 0, const char *name = 0);
- void insertItem(const QPixmap& pix, const QString& txt, bool oneBlock = false);
+ TreeComboBox(TQWidget *parent = 0, const char *name = 0);
+ void insertItem(const TQPixmap& pix, const TQString& txt, bool oneBlock = false);
private:
QListBox *m_listbox;