summaryrefslogtreecommitdiffstats
path: root/kkbswitch/boldlistboxitem.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-08-18 16:22:39 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-08-18 16:22:39 +0200
commit0af498ec7d2af08ea8e01b54cc29fae9975b8c91 (patch)
tree4803270143afa7788a254b7791da7bd605a661a3 /kkbswitch/boldlistboxitem.h
parent43e0b376e766d90e825697d0aa419c41007324a6 (diff)
downloadkkbswitch-0af498ec7d2af08ea8e01b54cc29fae9975b8c91.tar.gz
kkbswitch-0af498ec7d2af08ea8e01b54cc29fae9975b8c91.zip
Initial TQt conversion
Diffstat (limited to 'kkbswitch/boldlistboxitem.h')
-rw-r--r--kkbswitch/boldlistboxitem.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kkbswitch/boldlistboxitem.h b/kkbswitch/boldlistboxitem.h
index 49ca269..78949c7 100644
--- a/kkbswitch/boldlistboxitem.h
+++ b/kkbswitch/boldlistboxitem.h
@@ -18,19 +18,19 @@
#ifndef BOLDLISTBOXITEM_H
#define BOLDLISTBOXITEM_H
-#include <qlistbox.h>
+#include <ntqlistbox.h>
/**Listbox item that can optionally display its text in bold
*@author Leonid Zeitlin
*/
-class BoldListBoxItem : public QListBoxPixmap {
+class BoldListBoxItem : public TQListBoxPixmap {
private:
bool m_bold;
protected:
- virtual void paint (QPainter *painter);
+ virtual void paint (TQPainter *painter);
public:
- BoldListBoxItem(QListBox *listbox, const QPixmap &pix, const QString &text,
+ BoldListBoxItem(TQListBox *listbox, const TQPixmap &pix, const TQString &text,
bool bold = false);
~BoldListBoxItem();
bool bold() { return m_bold; }