diff options
Diffstat (limited to 'kkbswitch/boldlistboxitem.h')
-rw-r--r-- | kkbswitch/boldlistboxitem.h | 8 |
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; } |