X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Ftreemodel.cpp;h=6fc0c25b38a333944e46729caa3e83811e73a009;hp=9a919803bd4e85d94b590d6dae7447b7fe60095e;hb=c0e4730a50f812cd3795d47561357ff221094f8c;hpb=f2e4609f070221a010eef8be98524c5ce88d228b diff --git a/src/client/treemodel.cpp b/src/client/treemodel.cpp index 9a919803..6fc0c25b 100644 --- a/src/client/treemodel.cpp +++ b/src/client/treemodel.cpp @@ -399,9 +399,6 @@ QVariant TreeModel::data(const QModelIndex &index, int role) const { return QVariant(); AbstractTreeItem *item = static_cast(index.internalPointer()); - if(role == Qt::DisplayRole && !item->data(index.column(), role).isValid()) { - qDebug() << item->data(0, role) << item->columnCount(); - } return item->data(index.column(), role); }