Fix typos
[quassel.git] / src / client / treemodel.cpp
index 006434c..c08737c 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2020 by the Quassel Project                        *
+ *   Copyright (C) 2005-2022 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -45,7 +45,6 @@ private:
 AbstractTreeItem::AbstractTreeItem(AbstractTreeItem* parent)
     : QObject(parent)
     , _flags(Qt::ItemIsSelectable | Qt::ItemIsEnabled)
-    , _treeItemFlags(nullptr)
 {}
 
 bool AbstractTreeItem::newChild(AbstractTreeItem* item)
@@ -102,7 +101,7 @@ void AbstractTreeItem::removeAllChilds()
     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 consistency and the child gets deleted anyways
         child->removeAllChilds();
         ++childIter;
     }
@@ -518,7 +517,7 @@ void TreeModel::beginRemoveChilds(int firstRow, int lastRow)
         disconnect(parentItem->child(i), nullptr, this, nullptr);
     }
 
-    // consitency checks
+    // consistency checks
     QModelIndex parent = indexByItem(parentItem);
     Q_ASSERT(firstRow <= lastRow);
     Q_ASSERT(parentItem->childCount() > lastRow);