X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Ftreemodel.cpp;h=6fc0c25b38a333944e46729caa3e83811e73a009;hp=9a919803bd4e85d94b590d6dae7447b7fe60095e;hb=dbdca302fc349d0e3d46aa0d8091c08b2df28af5;hpb=997a62b68d7469a93f373476dd955c44eb051be0 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); }