summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/listviewitemconf.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/confedit/listviewitemconf.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/confedit/listviewitemconf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/apps/confedit/listviewitemconf.h b/noncore/apps/confedit/listviewitemconf.h
index 3c504ed..c005475 100644
--- a/noncore/apps/confedit/listviewitemconf.h
+++ b/noncore/apps/confedit/listviewitemconf.h
@@ -18,23 +18,24 @@ class ListViewItemConf : public QListViewItem
public:
enum {File, Group, Key};
ListViewItemConf(ListViewItemConf *parent);
ListViewItemConf(QListView *parent);
~ListViewItemConf();
int getType();
void save();
virtual void revert() = 0;
virtual void remove() = 0;
virtual void displayText() = 0;
+ virtual void expand() = 0;
virtual void changed();
bool isChanged() {return _changed;};
virtual void unchanged();
virtual bool revertable();
protected:
int _type;
bool _changed;
};
#endif