wilder
Laurent Montel 8 years ago
parent a435b3b8c2
commit 74c8dee63b
  1. 2
      src/kbreadcrumbselectionmodel.h
  2. 4
      src/kcheckableproxymodel.h
  3. 4
      src/kconcatenaterowsproxymodel.h
  4. 2
      src/kdescendantsproxymodel.h
  5. 2
      src/kextracolumnsproxymodel.h
  6. 2
      src/klinkitemselectionmodel.h
  7. 2
      src/krearrangecolumnsproxymodel.h
  8. 2
      src/krecursivefilterproxymodel.h
  9. 2
      src/kselectionproxymodel.h

@ -117,7 +117,7 @@ public:
explicit KBreadcrumbSelectionModel(QItemSelectionModel *selectionModel, QObject *parent = nullptr); explicit KBreadcrumbSelectionModel(QItemSelectionModel *selectionModel, QObject *parent = nullptr);
KBreadcrumbSelectionModel(QItemSelectionModel *selectionModel, BreadcrumbTarget target, QObject *parent = nullptr); KBreadcrumbSelectionModel(QItemSelectionModel *selectionModel, BreadcrumbTarget target, QObject *parent = nullptr);
virtual ~KBreadcrumbSelectionModel(); ~KBreadcrumbSelectionModel() override;
/** /**
Returns whether the actual selection in included in the proxy. Returns whether the actual selection in included in the proxy.

@ -67,8 +67,8 @@ class KITEMMODELS_EXPORT KCheckableProxyModel : public QIdentityProxyModel
{ {
Q_OBJECT Q_OBJECT
public: public:
KCheckableProxyModel(QObject *parent = nullptr); explicit KCheckableProxyModel(QObject *parent = nullptr);
~KCheckableProxyModel(); ~KCheckableProxyModel() override;
void setSelectionModel(QItemSelectionModel *itemSelectionModel); void setSelectionModel(QItemSelectionModel *itemSelectionModel);
QItemSelectionModel *selectionModel() const; QItemSelectionModel *selectionModel() const;

@ -66,11 +66,11 @@ public:
* Creates a KConcatenateRowsProxyModel. * Creates a KConcatenateRowsProxyModel.
* @param parent optional parent * @param parent optional parent
*/ */
KConcatenateRowsProxyModel(QObject *parent = nullptr); explicit KConcatenateRowsProxyModel(QObject *parent = nullptr);
/** /**
* Destructor. * Destructor.
*/ */
virtual ~KConcatenateRowsProxyModel(); ~KConcatenateRowsProxyModel() override;
/** /**
* Adds a source model @p sourceModel, after all existing source models. * Adds a source model @p sourceModel, after all existing source models.

@ -84,7 +84,7 @@ public:
/** /**
* Destroys the descendant entities proxy model. * Destroys the descendant entities proxy model.
*/ */
virtual ~KDescendantsProxyModel(); ~KDescendantsProxyModel() override;
/** /**
* Sets the source @p model of the proxy. * Sets the source @p model of the proxy.

@ -60,7 +60,7 @@ public:
/** /**
* Destructor. * Destructor.
*/ */
~KExtraColumnsProxyModel(); ~KExtraColumnsProxyModel() override;
// API // API

@ -109,7 +109,7 @@ public:
explicit KLinkItemSelectionModel(QObject *parent = nullptr); explicit KLinkItemSelectionModel(QObject *parent = nullptr);
~KLinkItemSelectionModel(); ~KLinkItemSelectionModel() override;
QItemSelectionModel *linkedItemSelectionModel() const; QItemSelectionModel *linkedItemSelectionModel() const;
void setLinkedItemSelectionModel(QItemSelectionModel *selectionModel); void setLinkedItemSelectionModel(QItemSelectionModel *selectionModel);

@ -53,7 +53,7 @@ public:
/** /**
* Destructor. * Destructor.
*/ */
~KRearrangeColumnsProxyModel(); ~KRearrangeColumnsProxyModel() override;
// API // API

@ -100,7 +100,7 @@ public:
/** /**
Destructor Destructor
*/ */
virtual ~KRecursiveFilterProxyModel(); ~KRecursiveFilterProxyModel() override;
/** @reimp */ /** @reimp */
void setSourceModel(QAbstractItemModel *model) override; void setSourceModel(QAbstractItemModel *model) override;

@ -110,7 +110,7 @@ public:
/** /**
dtor dtor
*/ */
virtual ~KSelectionProxyModel(); ~KSelectionProxyModel() override;
/** /**
reimp. reimp.

Loading…
Cancel
Save