X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Ftreemodel.h;h=12da2ed20660c69230026cd2e13f5870c5fe82db;hp=df34fb06e0c328f0489f944fd1bbf1883444b8fa;hb=1a45f16a9734820fba42fe1db3f38dd1eee49df6;hpb=b65b9f7615165e8700a44d59b7275a55558dd45b diff --git a/src/client/treemodel.h b/src/client/treemodel.h index df34fb06..12da2ed2 100644 --- a/src/client/treemodel.h +++ b/src/client/treemodel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -126,21 +126,15 @@ class PropertyMapItem : public AbstractTreeItem Q_OBJECT public: - PropertyMapItem(const QStringList &propertyOrder, AbstractTreeItem *parent = 0); PropertyMapItem(AbstractTreeItem *parent = 0); - virtual ~PropertyMapItem(); + virtual QStringList propertyOrder() const = 0; virtual QVariant data(int column, int role) const; virtual bool setData(int column, const QVariant &value, int role); virtual QString toolTip(int column) const { Q_UNUSED(column) return QString(); } virtual int columnCount() const; - - void appendProperty(const QString &property); - -private: - QStringList _propertyOrder; };