From: Manuel Nickschas Date: Thu, 24 Apr 2008 01:17:47 +0000 (+0000) Subject: Buffer sorting works in 0.3.x again also. Somehow that fix didn't make it in the... X-Git-Tag: 0.3.0~425^2~17 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=8c61baf7286e42949d7d19517690628a2c550dd1 Buffer sorting works in 0.3.x again also. Somehow that fix didn't make it in the last merges... --- diff --git a/src/uisupport/bufferviewfilter.cpp b/src/uisupport/bufferviewfilter.cpp index 49f1673a..75059075 100644 --- a/src/uisupport/bufferviewfilter.cpp +++ b/src/uisupport/bufferviewfilter.cpp @@ -204,7 +204,6 @@ bool BufferViewFilter::lessThan(const QModelIndex &source_left, const QModelInde } bool BufferViewFilter::bufferLessThan(const QModelIndex &source_left, const QModelIndex &source_right) const { - return QSortFilterProxyModel::lessThan(source_left, source_right); BufferId leftBufferId = sourceModel()->data(source_left, NetworkModel::BufferIdRole).value(); BufferId rightBufferId = sourceModel()->data(source_right, NetworkModel::BufferIdRole).value(); if(config()) {