summaryrefslogtreecommitdiffstats
path: root/src/corelib/itemmodels/qabstractitemmodel.h
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2015-04-17 10:29:04 +0200
committerMartin Smith <martin.smith@digia.com>2015-04-20 06:25:20 +0000
commit6526a4e1367fa134ff29952fcbdd0d7cc937003f (patch)
tree08b645d922d4339a497f882600c6b1f207f0f5c2 /src/corelib/itemmodels/qabstractitemmodel.h
parentd0c96c65ec5e25b1b43885a8c32a886a9b6aa834 (diff)
qdoc: Remove #ifdef Q_QDOC for uses of QPrivateSignal
Signals marked with QPrivateSignal had the QPrivateSignal marker ifdefed out for qdoc. This is no longer necessary, so the #ifdefs are removed. Change-Id: Idb334ed311c6ed6883d7b7b5a3fcdede60c4a1f8 Task-number: QTBUG-45535 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com> Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'src/corelib/itemmodels/qabstractitemmodel.h')
-rw-r--r--src/corelib/itemmodels/qabstractitemmodel.h84
1 files changed, 14 insertions, 70 deletions
diff --git a/src/corelib/itemmodels/qabstractitemmodel.h b/src/corelib/itemmodels/qabstractitemmodel.h
index c4f705e858..5ca7bd0123 100644
--- a/src/corelib/itemmodels/qabstractitemmodel.h
+++ b/src/corelib/itemmodels/qabstractitemmodel.h
@@ -246,82 +246,26 @@ Q_SIGNALS:
void layoutChanged(const QList<QPersistentModelIndex> &parents = QList<QPersistentModelIndex>(), QAbstractItemModel::LayoutChangeHint hint = QAbstractItemModel::NoLayoutChangeHint);
void layoutAboutToBeChanged(const QList<QPersistentModelIndex> &parents = QList<QPersistentModelIndex>(), QAbstractItemModel::LayoutChangeHint hint = QAbstractItemModel::NoLayoutChangeHint);
- void rowsAboutToBeInserted(const QModelIndex &parent, int first, int last
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
- void rowsInserted(const QModelIndex &parent, int first, int last
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
+ void rowsAboutToBeInserted(const QModelIndex &parent, int first, int last, QPrivateSignal);
+ void rowsInserted(const QModelIndex &parent, int first, int last, QPrivateSignal);
- void rowsAboutToBeRemoved(const QModelIndex &parent, int first, int last
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
- void rowsRemoved(const QModelIndex &parent, int first, int last
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
+ void rowsAboutToBeRemoved(const QModelIndex &parent, int first, int last, QPrivateSignal);
+ void rowsRemoved(const QModelIndex &parent, int first, int last, QPrivateSignal);
- void columnsAboutToBeInserted(const QModelIndex &parent, int first, int last
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
- void columnsInserted(const QModelIndex &parent, int first, int last
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
+ void columnsAboutToBeInserted(const QModelIndex &parent, int first, int last, QPrivateSignal);
+ void columnsInserted(const QModelIndex &parent, int first, int last, QPrivateSignal);
- void columnsAboutToBeRemoved(const QModelIndex &parent, int first, int last
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
- void columnsRemoved(const QModelIndex &parent, int first, int last
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
+ void columnsAboutToBeRemoved(const QModelIndex &parent, int first, int last, QPrivateSignal);
+ void columnsRemoved(const QModelIndex &parent, int first, int last, QPrivateSignal);
- void modelAboutToBeReset(
-#if !defined(Q_QDOC)
- QPrivateSignal
-#endif
- );
- void modelReset(
-#if !defined(Q_QDOC)
- QPrivateSignal
-#endif
- );
+ void modelAboutToBeReset(QPrivateSignal);
+ void modelReset(QPrivateSignal);
- void rowsAboutToBeMoved( const QModelIndex &sourceParent, int sourceStart, int sourceEnd, const QModelIndex &destinationParent, int destinationRow
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
- void rowsMoved( const QModelIndex &parent, int start, int end, const QModelIndex &destination, int row
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
+ void rowsAboutToBeMoved( const QModelIndex &sourceParent, int sourceStart, int sourceEnd, const QModelIndex &destinationParent, int destinationRow, QPrivateSignal);
+ void rowsMoved( const QModelIndex &parent, int start, int end, const QModelIndex &destination, int row, QPrivateSignal);
- void columnsAboutToBeMoved( const QModelIndex &sourceParent, int sourceStart, int sourceEnd, const QModelIndex &destinationParent, int destinationColumn
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
- void columnsMoved( const QModelIndex &parent, int start, int end, const QModelIndex &destination, int column
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
+ void columnsAboutToBeMoved( const QModelIndex &sourceParent, int sourceStart, int sourceEnd, const QModelIndex &destinationParent, int destinationColumn, QPrivateSignal);
+ void columnsMoved( const QModelIndex &parent, int start, int end, const QModelIndex &destination, int column, QPrivateSignal);
public Q_SLOTS:
virtual bool submit();