X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Ftreemodel.cpp;h=f599803d7dc93e7810170b01e4c875d9d2ba864d;hp=05c9e5bc56568fb9ea53025aa8a4defbf414f36f;hb=e50ae7a06fc4e5d3a911c361d30953410deab609;hpb=4a5065255e652dd0c301bac0db41b7afb777ef49 diff --git a/src/client/treemodel.cpp b/src/client/treemodel.cpp index 05c9e5bc..f599803d 100644 --- a/src/client/treemodel.cpp +++ b/src/client/treemodel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -304,7 +304,7 @@ QVariant PropertyMapItem::data(int column, int role) const return toolTip(column); case Qt::DisplayRole: case TreeModel::SortRole: // fallthrough, since SortRole should default to DisplayRole - return property(_propertyOrder[column].toAscii()); + return property(_propertyOrder[column].toLatin1()); default: return QVariant(); } @@ -317,7 +317,7 @@ bool PropertyMapItem::setData(int column, const QVariant &value, int role) return false; emit dataChanged(column); - return setProperty(_propertyOrder[column].toAscii(), value); + return setProperty(_propertyOrder[column].toLatin1(), value); } @@ -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;