qa: Resolve Qt deprecation warnings - default-construct QFlags
[quassel.git] / src / client / treemodel.cpp
index 314ec7f..3e243a4 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2018 by the Quassel Project                        *
+ *   Copyright (C) 2005-2020 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 
 #include "treemodel.h"
 
+#include <utility>
+
 #include <QCoreApplication>
 #include <QDebug>
-#include <utility>
 
 #include "quassel.h"
 
 class RemoveChildLaterEvent : public QEvent
 {
 public:
-    RemoveChildLaterEvent(AbstractTreeItem *child) : QEvent(QEvent::User), _child(child) {};
-    inline AbstractTreeItem *child() { return _child; }
+    RemoveChildLaterEvent(AbstractTreeItem* child)
+        : QEvent(QEvent::User)
+        , _child(child){};
+    inline AbstractTreeItem* child() { return _child; }
+
 private:
-    AbstractTreeItem *_child;
+    AbstractTreeItem_child;
 };
 
-
 /*****************************************
  *  Abstract Items of a TreeModel
  *****************************************/
-AbstractTreeItem::AbstractTreeItem(AbstractTreeItem *parent)
-    : QObject(parent),
-    _flags(Qt::ItemIsSelectable | Qt::ItemIsEnabled),
-    _treeItemFlags(nullptr)
-{
-}
-
+AbstractTreeItem::AbstractTreeItem(AbstractTreeItem* parent)
+    : QObject(parent)
+    , _flags(Qt::ItemIsSelectable | Qt::ItemIsEnabled)
+{}
 
-bool AbstractTreeItem::newChild(AbstractTreeItem *item)
+bool AbstractTreeItem::newChild(AbstractTreeItemitem)
 {
     int newRow = childCount();
     emit beginAppendChilds(newRow, newRow);
@@ -56,8 +56,7 @@ bool AbstractTreeItem::newChild(AbstractTreeItem *item)
     return true;
 }
 
-
-bool AbstractTreeItem::newChilds(const QList<AbstractTreeItem *> &items)
+bool AbstractTreeItem::newChilds(const QList<AbstractTreeItem*>& items)
 {
     if (items.isEmpty())
         return false;
@@ -72,7 +71,6 @@ bool AbstractTreeItem::newChilds(const QList<AbstractTreeItem *> &items)
     return true;
 }
 
-
 bool AbstractTreeItem::removeChild(int row)
 {
     if (row < 0 || childCount() <= row)
@@ -80,7 +78,7 @@ bool AbstractTreeItem::removeChild(int row)
 
     child(row)->removeAllChilds();
     emit beginRemoveChilds(row, row);
-    AbstractTreeItem *treeitem = _childItems.takeAt(row);
+    AbstractTreeItemtreeitem = _childItems.takeAt(row);
     delete treeitem;
     emit endRemoveChilds();
 
@@ -89,7 +87,6 @@ bool AbstractTreeItem::removeChild(int row)
     return true;
 }
 
-
 void AbstractTreeItem::removeAllChilds()
 {
     const int numChilds = childCount();
@@ -97,14 +94,14 @@ void AbstractTreeItem::removeAllChilds()
     if (numChilds == 0)
         return;
 
-    AbstractTreeItem *child;
+    AbstractTreeItemchild;
 
-    QList<AbstractTreeItem *>::iterator childIter;
+    QList<AbstractTreeItem*>::iterator childIter;
 
     childIter = _childItems.begin();
     while (childIter != _childItems.end()) {
         child = *childIter;
-        child->setTreeItemFlags(nullptr); // disable self deletion, as this would only fuck up consitency and the child gets deleted anyways
+        child->setTreeItemFlags({});  // disable self deletion, as this would only fuck up consitency and the child gets deleted anyways
         child->removeAllChilds();
         ++childIter;
     }
@@ -121,22 +118,20 @@ void AbstractTreeItem::removeAllChilds()
     checkForDeletion();
 }
 
-
-void AbstractTreeItem::removeChildLater(AbstractTreeItem *child)
+void AbstractTreeItem::removeChildLater(AbstractTreeItem* child)
 {
     Q_ASSERT(child);
     QCoreApplication::postEvent(this, new RemoveChildLaterEvent(child));
 }
 
-
-void AbstractTreeItem::customEvent(QEvent *event)
+void AbstractTreeItem::customEvent(QEvent* event)
 {
     if (event->type() != QEvent::User)
         return;
 
     event->accept();
 
-    auto *removeEvent = static_cast<RemoveChildLaterEvent *>(event);
+    auto* removeEvent = static_cast<RemoveChildLaterEvent*>(event);
     int childRow = _childItems.indexOf(removeEvent->child());
     if (childRow == -1)
         return;
@@ -148,13 +143,12 @@ void AbstractTreeItem::customEvent(QEvent *event)
     removeChild(childRow);
 }
 
-
-bool AbstractTreeItem::reParent(AbstractTreeItem *newParent)
+bool AbstractTreeItem::reParent(AbstractTreeItem* newParent)
 {
     // currently we support only re parenting if the child that's about to be
     // adopted does not have any children itself.
     if (childCount() != 0) {
-        qDebug() << "AbstractTreeItem::reParent(): cannot reparent"  << this << "with children.";
+        qDebug() << "AbstractTreeItem::reParent(): cannot reparent" << this << "with children.";
         return false;
     }
 
@@ -166,12 +160,13 @@ bool AbstractTreeItem::reParent(AbstractTreeItem *newParent)
     parent()->_childItems.removeAt(oldRow);
     emit parent()->endRemoveChilds();
 
-    AbstractTreeItem *oldParent = parent();
+    AbstractTreeItemoldParent = parent();
     setParent(newParent);
 
     bool success = newParent->newChild(this);
     if (!success)
-        qWarning() << "AbstractTreeItem::reParent(): failed to attach to new parent after removing from old parent! this:" << this << "new parent:" << newParent;
+        qWarning() << "AbstractTreeItem::reParent(): failed to attach to new parent after removing from old parent! this:" << this
+                   << "new parent:" << newParent;
 
     if (oldParent)
         oldParent->checkForDeletion();
@@ -179,8 +174,7 @@ bool AbstractTreeItem::reParent(AbstractTreeItem *newParent)
     return success;
 }
 
-
-AbstractTreeItem *AbstractTreeItem::child(int row) const
+AbstractTreeItem* AbstractTreeItem::child(int row) const
 {
     if (childCount() <= row)
         return nullptr;
@@ -188,7 +182,6 @@ AbstractTreeItem *AbstractTreeItem::child(int row) const
         return _childItems[row];
 }
 
-
 int AbstractTreeItem::childCount(int column) const
 {
     if (column > 0)
@@ -197,7 +190,6 @@ int AbstractTreeItem::childCount(int column) const
         return _childItems.count();
 }
 
-
 int AbstractTreeItem::row() const
 {
     if (!parent()) {
@@ -205,19 +197,18 @@ int AbstractTreeItem::row() const
         return -1;
     }
 
-    int row_ = parent()->_childItems.indexOf(const_cast<AbstractTreeItem *>(this));
+    int row_ = parent()->_childItems.indexOf(const_cast<AbstractTreeItem*>(this));
     if (row_ == -1)
         qWarning() << "AbstractTreeItem::row():" << this << "is not in the child list of" << QObject::parent();
     return row_;
 }
 
-
 void AbstractTreeItem::dumpChildList()
 {
     qDebug() << "==== Childlist for Item:" << this << "====";
     if (childCount() > 0) {
-        AbstractTreeItem *child;
-        QList<AbstractTreeItem *>::const_iterator childIter = _childItems.constBegin();
+        AbstractTreeItemchild;
+        QList<AbstractTreeItem*>::const_iterator childIter = _childItems.constBegin();
         while (childIter != _childItems.constEnd()) {
             child = *childIter;
             qDebug() << "Row:" << child->row() << child << child->data(0, Qt::DisplayRole);
@@ -227,16 +218,13 @@ void AbstractTreeItem::dumpChildList()
     qDebug() << "==== End Of Childlist ====";
 }
 
-
 /*****************************************
  * SimpleTreeItem
  *****************************************/
-SimpleTreeItem::SimpleTreeItem(QList<QVariant> data, AbstractTreeItem *parent)
-    : AbstractTreeItem(parent),
-    _itemData(std::move(data))
-{
-}
-
+SimpleTreeItem::SimpleTreeItem(QList<QVariant> data, AbstractTreeItem* parent)
+    : AbstractTreeItem(parent)
+    , _itemData(std::move(data))
+{}
 
 QVariant SimpleTreeItem::data(int column, int role) const
 {
@@ -246,8 +234,7 @@ QVariant SimpleTreeItem::data(int column, int role) const
         return _itemData[column];
 }
 
-
-bool SimpleTreeItem::setData(int column, const QVariant &value, int role)
+bool SimpleTreeItem::setData(int column, const QVariant& value, int role)
 {
     if (column > columnCount() || role != Qt::DisplayRole)
         return false;
@@ -261,21 +248,17 @@ bool SimpleTreeItem::setData(int column, const QVariant &value, int role)
     return true;
 }
 
-
 int SimpleTreeItem::columnCount() const
 {
     return _itemData.count();
 }
 
-
 /*****************************************
  * PropertyMapItem
  *****************************************/
-PropertyMapItem::PropertyMapItem(AbstractTreeItem *parent)
+PropertyMapItem::PropertyMapItem(AbstractTreeItemparent)
     : AbstractTreeItem(parent)
-{
-}
-
+{}
 
 QVariant PropertyMapItem::data(int column, int role) const
 {
@@ -286,15 +269,14 @@ QVariant PropertyMapItem::data(int column, int role) const
     case Qt::ToolTipRole:
         return toolTip(column);
     case Qt::DisplayRole:
-    case TreeModel::SortRole: // fallthrough, since SortRole should default to DisplayRole
+    case TreeModel::SortRole:  // fallthrough, since SortRole should default to DisplayRole
         return property(propertyOrder()[column].toLatin1());
     default:
         return QVariant();
     }
 }
 
-
-bool PropertyMapItem::setData(int column, const QVariant &value, int role)
+bool PropertyMapItem::setData(int column, const QVariant& value, int role)
 {
     if (column >= columnCount() || role != Qt::DisplayRole)
         return false;
@@ -304,64 +286,54 @@ bool PropertyMapItem::setData(int column, const QVariant &value, int role)
     return true;
 }
 
-
 int PropertyMapItem::columnCount() const
 {
     return propertyOrder().count();
 }
 
-
 /*****************************************
  * TreeModel
  *****************************************/
-TreeModel::TreeModel(const QList<QVariant> &data, QObject *parent)
-    : QAbstractItemModel(parent),
-    _childStatus(QModelIndex(), 0, 0, 0),
-    _aboutToRemoveOrInsert(false)
+TreeModel::TreeModel(const QList<QVariant>& data, QObject* parent)
+    : QAbstractItemModel(parent)
+    , _childStatus(QModelIndex(), 0, 0, 0)
+    _aboutToRemoveOrInsert(false)
 {
     rootItem = new SimpleTreeItem(data, nullptr);
     connectItem(rootItem);
 
     if (Quassel::isOptionSet("debugmodel")) {
-        connect(this, SIGNAL(rowsAboutToBeInserted(const QModelIndex &, int, int)),
-            this, SLOT(debug_rowsAboutToBeInserted(const QModelIndex &, int, int)));
-        connect(this, SIGNAL(rowsAboutToBeRemoved(const QModelIndex &, int, int)),
-            this, SLOT(debug_rowsAboutToBeRemoved(const QModelIndex &, int, int)));
-        connect(this, SIGNAL(rowsInserted(const QModelIndex &, int, int)),
-            this, SLOT(debug_rowsInserted(const QModelIndex &, int, int)));
-        connect(this, SIGNAL(rowsRemoved(const QModelIndex &, int, int)),
-            this, SLOT(debug_rowsRemoved(const QModelIndex &, int, int)));
-        connect(this, SIGNAL(dataChanged(const QModelIndex &, const QModelIndex &)),
-            this, SLOT(debug_dataChanged(const QModelIndex &, const QModelIndex &)));
+        connect(this, &QAbstractItemModel::rowsAboutToBeInserted, this, &TreeModel::debug_rowsAboutToBeInserted);
+        connect(this, &QAbstractItemModel::rowsAboutToBeRemoved, this, &TreeModel::debug_rowsAboutToBeRemoved);
+        connect(this, &QAbstractItemModel::rowsInserted, this, &TreeModel::debug_rowsInserted);
+        connect(this, &QAbstractItemModel::rowsRemoved, this, &TreeModel::debug_rowsRemoved);
+        connect(this, &QAbstractItemModel::dataChanged, this, &TreeModel::debug_dataChanged);
     }
 }
 
-
 TreeModel::~TreeModel()
 {
     delete rootItem;
 }
 
-
-AbstractTreeItem *TreeModel::root() const
+AbstractTreeItem* TreeModel::root() const
 {
     return rootItem;
 }
 
-
-QModelIndex TreeModel::index(int row, int column, const QModelIndex &parent) const
+QModelIndex TreeModel::index(int row, int column, const QModelIndex& parent) const
 {
     if (row < 0 || row >= rowCount(parent) || column < 0 || column >= columnCount(parent))
         return {};
 
-    AbstractTreeItem *parentItem;
+    AbstractTreeItemparentItem;
 
     if (!parent.isValid())
         parentItem = rootItem;
     else
-        parentItem = static_cast<AbstractTreeItem *>(parent.internalPointer());
+        parentItem = static_cast<AbstractTreeItem*>(parent.internalPointer());
 
-    AbstractTreeItem *childItem = parentItem->child(row);
+    AbstractTreeItemchildItem = parentItem->child(row);
 
     if (childItem)
         return createIndex(row, column, childItem);
@@ -369,8 +341,7 @@ QModelIndex TreeModel::index(int row, int column, const QModelIndex &parent) con
         return {};
 }
 
-
-QModelIndex TreeModel::indexByItem(AbstractTreeItem *item) const
+QModelIndex TreeModel::indexByItem(AbstractTreeItem* item) const
 {
     if (item == nullptr) {
         qWarning() << "TreeModel::indexByItem(AbstractTreeItem *item) received NULL-Pointer";
@@ -383,8 +354,7 @@ QModelIndex TreeModel::indexByItem(AbstractTreeItem *item) const
         return createIndex(item->row(), 0, item);
 }
 
-
-QModelIndex TreeModel::parent(const QModelIndex &index) const
+QModelIndex TreeModel::parent(const QModelIndex& index) const
 {
     if (!index.isValid()) {
         // ModelTest does this
@@ -392,8 +362,8 @@ QModelIndex TreeModel::parent(const QModelIndex &index) const
         return {};
     }
 
-    auto *childItem = static_cast<AbstractTreeItem *>(index.internalPointer());
-    AbstractTreeItem *parentItem = childItem->parent();
+    auto* childItem = static_cast<AbstractTreeItem*>(index.internalPointer());
+    AbstractTreeItemparentItem = childItem->parent();
 
     Q_ASSERT(parentItem);
     if (parentItem == rootItem)
@@ -402,20 +372,18 @@ QModelIndex TreeModel::parent(const QModelIndex &index) const
     return createIndex(parentItem->row(), 0, parentItem);
 }
 
-
-int TreeModel::rowCount(const QModelIndex &parent) const
+int TreeModel::rowCount(const QModelIndex& parent) const
 {
-    AbstractTreeItem *parentItem;
+    AbstractTreeItemparentItem;
     if (!parent.isValid())
         parentItem = rootItem;
     else
-        parentItem = static_cast<AbstractTreeItem *>(parent.internalPointer());
+        parentItem = static_cast<AbstractTreeItem*>(parent.internalPointer());
 
     return parentItem->childCount(parent.column());
 }
 
-
-int TreeModel::columnCount(const QModelIndex &parent) const
+int TreeModel::columnCount(const QModelIndex& parent) const
 {
     Q_UNUSED(parent)
     return rootItem->columnCount();
@@ -424,47 +392,43 @@ int TreeModel::columnCount(const QModelIndex &parent) const
     // actually this gives us more freedom cause we don't have to ensure that a rows parent
     // has equal or more columns than that row
 
-//   AbstractTreeItem *parentItem;
-//   if(!parent.isValid())
-//     parentItem = rootItem;
-//   else
-//     parentItem = static_cast<AbstractTreeItem*>(parent.internalPointer());
-//   return parentItem->columnCount();
+    //   AbstractTreeItem *parentItem;
+    //   if(!parent.isValid())
+    //     parentItem = rootItem;
+    //   else
+    //     parentItem = static_cast<AbstractTreeItem*>(parent.internalPointer());
+    //   return parentItem->columnCount();
 }
 
-
-QVariant TreeModel::data(const QModelIndex &index, int role) const
+QVariant TreeModel::data(const QModelIndex& index, int role) const
 {
     if (!index.isValid())
         return QVariant();
 
-    auto *item = static_cast<AbstractTreeItem *>(index.internalPointer());
+    auto* item = static_cast<AbstractTreeItem*>(index.internalPointer());
     return item->data(index.column(), role);
 }
 
-
-bool TreeModel::setData(const QModelIndex &index, const QVariant &value, int role)
+bool TreeModel::setData(const QModelIndex& index, const QVariant& value, int role)
 {
     if (!index.isValid())
         return false;
 
-    auto *item = static_cast<AbstractTreeItem *>(index.internalPointer());
+    auto* item = static_cast<AbstractTreeItem*>(index.internalPointer());
     return item->setData(index.column(), value, role);
 }
 
-
-Qt::ItemFlags TreeModel::flags(const QModelIndex &index) const
+Qt::ItemFlags TreeModel::flags(const QModelIndex& index) const
 {
     if (!index.isValid()) {
         return rootItem->flags() & Qt::ItemIsDropEnabled;
     }
     else {
-        auto *item = static_cast<AbstractTreeItem *>(index.internalPointer());
+        auto* item = static_cast<AbstractTreeItem*>(index.internalPointer());
         return item->flags();
     }
 }
 
-
 QVariant TreeModel::headerData(int section, Qt::Orientation orientation, int role) const
 {
     if (orientation == Qt::Horizontal && role == Qt::DisplayRole)
@@ -473,10 +437,9 @@ QVariant TreeModel::headerData(int section, Qt::Orientation orientation, int rol
         return QVariant();
 }
 
-
 void TreeModel::itemDataChanged(int column)
 {
-    auto *item = qobject_cast<AbstractTreeItem *>(sender());
+    auto* item = qobject_cast<AbstractTreeItem*>(sender());
     QModelIndex leftIndex, rightIndex;
 
     if (item == rootItem)
@@ -494,27 +457,20 @@ void TreeModel::itemDataChanged(int column)
     emit dataChanged(leftIndex, rightIndex);
 }
 
-
-void TreeModel::connectItem(AbstractTreeItem *item)
+void TreeModel::connectItem(AbstractTreeItem* item)
 {
-    connect(item, SIGNAL(dataChanged(int)),
-        this, SLOT(itemDataChanged(int)));
+    connect(item, &AbstractTreeItem::dataChanged, this, &TreeModel::itemDataChanged);
 
-    connect(item, SIGNAL(beginAppendChilds(int, int)),
-        this, SLOT(beginAppendChilds(int, int)));
-    connect(item, SIGNAL(endAppendChilds()),
-        this, SLOT(endAppendChilds()));
+    connect(item, &AbstractTreeItem::beginAppendChilds, this, &TreeModel::beginAppendChilds);
+    connect(item, &AbstractTreeItem::endAppendChilds, this, &TreeModel::endAppendChilds);
 
-    connect(item, SIGNAL(beginRemoveChilds(int, int)),
-        this, SLOT(beginRemoveChilds(int, int)));
-    connect(item, SIGNAL(endRemoveChilds()),
-        this, SLOT(endRemoveChilds()));
+    connect(item, &AbstractTreeItem::beginRemoveChilds, this, &TreeModel::beginRemoveChilds);
+    connect(item, &AbstractTreeItem::endRemoveChilds, this, &TreeModel::endRemoveChilds);
 }
 
-
 void TreeModel::beginAppendChilds(int firstRow, int lastRow)
 {
-    auto *parentItem = qobject_cast<AbstractTreeItem *>(sender());
+    auto* parentItem = qobject_cast<AbstractTreeItem*>(sender());
     if (!parentItem) {
         qWarning() << "TreeModel::beginAppendChilds(): cannot append Children to unknown parent";
         return;
@@ -528,10 +484,9 @@ void TreeModel::beginAppendChilds(int firstRow, int lastRow)
     beginInsertRows(parent, firstRow, lastRow);
 }
 
-
 void TreeModel::endAppendChilds()
 {
-    auto *parentItem = qobject_cast<AbstractTreeItem *>(sender());
+    auto* parentItem = qobject_cast<AbstractTreeItem*>(sender());
     if (!parentItem) {
         qWarning() << "TreeModel::endAppendChilds(): cannot append Children to unknown parent";
         return;
@@ -550,10 +505,9 @@ void TreeModel::endAppendChilds()
     endInsertRows();
 }
 
-
 void TreeModel::beginRemoveChilds(int firstRow, int lastRow)
 {
-    auto *parentItem = qobject_cast<AbstractTreeItem *>(sender());
+    auto* parentItem = qobject_cast<AbstractTreeItem*>(sender());
     if (!parentItem) {
         qWarning() << "TreeModel::beginRemoveChilds(): cannot append Children to unknown parent";
         return;
@@ -574,10 +528,9 @@ void TreeModel::beginRemoveChilds(int firstRow, int lastRow)
     beginRemoveRows(parent, firstRow, lastRow);
 }
 
-
 void TreeModel::endRemoveChilds()
 {
-    auto *parentItem = qobject_cast<AbstractTreeItem *>(sender());
+    auto* parentItem = qobject_cast<AbstractTreeItem*>(sender());
     if (!parentItem) {
         qWarning() << "TreeModel::endRemoveChilds(): cannot remove Children from unknown parent";
         return;
@@ -596,60 +549,67 @@ void TreeModel::endRemoveChilds()
     endRemoveRows();
 }
 
-
 void TreeModel::clear()
 {
     rootItem->removeAllChilds();
 }
 
-
-void TreeModel::debug_rowsAboutToBeInserted(const QModelIndex &parent, int start, int end)
+void TreeModel::debug_rowsAboutToBeInserted(const QModelIndex& parent, int start, int end)
 {
-    qDebug() << "debug_rowsAboutToBeInserted" << parent << parent.internalPointer() << parent.data().toString() << rowCount(parent) << start << end;
+    qDebug() << "debug_rowsAboutToBeInserted" << parent << parent.internalPointer() << parent.data().toString() << rowCount(parent) << start
+             << end;
 }
 
-
-void TreeModel::debug_rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end)
+void TreeModel::debug_rowsAboutToBeRemoved(const QModelIndex& parent, int start, int end)
 {
-    AbstractTreeItem *parentItem;
-    parentItem = static_cast<AbstractTreeItem *>(parent.internalPointer());
+    AbstractTreeItemparentItem;
+    parentItem = static_cast<AbstractTreeItem*>(parent.internalPointer());
     if (!parentItem)
         parentItem = rootItem;
     qDebug() << "debug_rowsAboutToBeRemoved" << parent << parentItem << parent.data().toString() << rowCount(parent) << start << end;
 
+    // Make sure model is valid first
+    if (!parent.model()) {
+        qDebug() << "Parent model is not valid!" << end;
+        return;
+    }
+
     QModelIndex child;
     for (int i = end; i >= start; i--) {
-        child = parent.child(i, 0);
+        child = parent.model()->index(i, 0, parent);
         Q_ASSERT(parentItem->child(i));
         qDebug() << ">>>" << i << child << child.data().toString();
     }
 }
 
-
-void TreeModel::debug_rowsInserted(const QModelIndex &parent, int start, int end)
+void TreeModel::debug_rowsInserted(const QModelIndex& parent, int start, int end)
 {
-    AbstractTreeItem *parentItem;
-    parentItem = static_cast<AbstractTreeItem *>(parent.internalPointer());
+    AbstractTreeItemparentItem;
+    parentItem = static_cast<AbstractTreeItem*>(parent.internalPointer());
     if (!parentItem)
         parentItem = rootItem;
     qDebug() << "debug_rowsInserted:" << parent << parentItem << parent.data().toString() << rowCount(parent) << start << end;
 
+    // Make sure model is valid first
+    if (!parent.model()) {
+        qDebug() << "Parent model is not valid!" << end;
+        return;
+    }
+
     QModelIndex child;
     for (int i = start; i <= end; i++) {
-        child = parent.child(i, 0);
+        child = parent.model()->index(i, 0, parent);
         Q_ASSERT(parentItem->child(i));
         qDebug() << "<<<" << i << child << child.data().toString();
     }
 }
 
-
-void TreeModel::debug_rowsRemoved(const QModelIndex &parent, int start, int end)
+void TreeModel::debug_rowsRemoved(const QModelIndex& parent, int start, int end)
 {
     qDebug() << "debug_rowsRemoved" << parent << parent.internalPointer() << parent.data().toString() << rowCount(parent) << start << end;
 }
 
-
-void TreeModel::debug_dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
+void TreeModel::debug_dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight)
 {
     qDebug() << "debug_dataChanged" << topLeft << bottomRight;
     QStringList displayData;