From: Bas Pape Date: Sat, 20 Apr 2013 11:37:23 +0000 (+0200) Subject: Prevent unused-but-set warnings ifndef QT_NO_DEBUG X-Git-Tag: 0.11.0~76 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=962a3ff2774204e216016adaaddb641a8bb5e446 Prevent unused-but-set warnings ifndef QT_NO_DEBUG --- diff --git a/src/client/treemodel.cpp b/src/client/treemodel.cpp index c03da2b0..33601995 100644 --- a/src/client/treemodel.cpp +++ b/src/client/treemodel.cpp @@ -554,7 +554,9 @@ void TreeModel::endAppendChilds() } Q_ASSERT(_aboutToRemoveOrInsert); ChildStatus cs = _childStatus; +#ifndef QT_NO_DEBUG QModelIndex parent = indexByItem(parentItem); +#endif Q_ASSERT(cs.parent == parent); Q_ASSERT(rowCount(parent) == cs.childCount + cs.end - cs.start + 1); @@ -600,8 +602,10 @@ void TreeModel::endRemoveChilds() // concistency checks Q_ASSERT(_aboutToRemoveOrInsert); +#ifndef QT_NO_DEBUG ChildStatus cs = _childStatus; QModelIndex parent = indexByItem(parentItem); +#endif Q_ASSERT(cs.parent == parent); Q_ASSERT(rowCount(parent) == cs.childCount - cs.end + cs.start - 1); _aboutToRemoveOrInsert = false;