summaryrefslogtreecommitdiff
path: root/noncore/settings/appearance2/exceptlistitem.h
Unidiff
Diffstat (limited to 'noncore/settings/appearance2/exceptlistitem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/appearance2/exceptlistitem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/appearance2/exceptlistitem.h b/noncore/settings/appearance2/exceptlistitem.h
index 5eda79c..7b4fa48 100644
--- a/noncore/settings/appearance2/exceptlistitem.h
+++ b/noncore/settings/appearance2/exceptlistitem.h
@@ -26,25 +26,25 @@
26*/ 26*/
27 27
28#ifndef EXCEPTLISTITEM_H 28#ifndef EXCEPTLISTITEM_H
29#define EXCEPTLISTITEM_H 29#define EXCEPTLISTITEM_H
30 30
31#include <qlistview.h> 31#include <qlistview.h>
32#include <qpixmap.h> 32#include <qpixmap.h>
33#include <qimage.h> 33#include <qimage.h>
34#include <qpainter.h> 34#include <qpainter.h>
35 35
36class ExceptListItem : public QListViewItem { 36class ExceptListItem : public QListViewItem {
37public: 37public:
38 ExceptListItem ( QListView *lv, const QString &t, bool nostyle = true, bool nofont = true, bool nodeco = true ) : QListViewItem ( lv ) 38 ExceptListItem ( QListView *lv, QListViewItem *after, const QString &t, bool nostyle = true, bool nofont = true, bool nodeco = true ) : QListViewItem ( lv, after )
39 { 39 {
40 m_text = t; 40 m_text = t;
41 41
42 m_nofont = nofont; 42 m_nofont = nofont;
43 m_nostyle = nostyle; 43 m_nostyle = nostyle;
44 m_nodeco = nodeco; 44 m_nodeco = nodeco;
45 45
46 init ( ); 46 init ( );
47 } 47 }
48 48
49 virtual ~ExceptListItem ( ) 49 virtual ~ExceptListItem ( )
50 { 50 {