X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Ftreemodel.cpp;h=cc1b08a873f8f8c7b1e3bf5adc2597fd93689c35;hp=000eaaa2fc0fe9553551d72baeaedb98734ab5d5;hb=6f4a6454e49db703bd6336f575bbbeff95388404;hpb=909e7c48ad785878ec1e99a7b33eafbbb8e4c9eb diff --git a/src/client/treemodel.cpp b/src/client/treemodel.cpp index 000eaaa2..cc1b08a8 100644 --- a/src/client/treemodel.cpp +++ b/src/client/treemodel.cpp @@ -459,7 +459,7 @@ void TreeModel::connectItem(AbstractTreeItem *item) { void TreeModel::beginAppendChilds(int firstRow, int lastRow) { AbstractTreeItem *parentItem = qobject_cast(sender()); if(!parentItem) { - qWarning() << "TreeModel::beginAppendChilds(): cannot append Childs to unknown parent"; + qWarning() << "TreeModel::beginAppendChilds(): cannot append Children to unknown parent"; return; } @@ -474,7 +474,7 @@ void TreeModel::beginAppendChilds(int firstRow, int lastRow) { void TreeModel::endAppendChilds() { AbstractTreeItem *parentItem = qobject_cast(sender()); if(!parentItem) { - qWarning() << "TreeModel::endAppendChilds(): cannot append Childs to unknown parent"; + qWarning() << "TreeModel::endAppendChilds(): cannot append Children to unknown parent"; return; } Q_ASSERT(_aboutToRemoveOrInsert); @@ -493,7 +493,7 @@ void TreeModel::endAppendChilds() { void TreeModel::beginRemoveChilds(int firstRow, int lastRow) { AbstractTreeItem *parentItem = qobject_cast(sender()); if(!parentItem) { - qWarning() << "TreeModel::beginRemoveChilds(): cannot append Childs to unknown parent"; + qWarning() << "TreeModel::beginRemoveChilds(): cannot append Children to unknown parent"; return; } @@ -515,7 +515,7 @@ void TreeModel::beginRemoveChilds(int firstRow, int lastRow) { void TreeModel::endRemoveChilds() { AbstractTreeItem *parentItem = qobject_cast(sender()); if(!parentItem) { - qWarning() << "TreeModel::endRemoveChilds(): cannot remove Childs from unknown parent"; + qWarning() << "TreeModel::endRemoveChilds(): cannot remove Children from unknown parent"; return; }