X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.cpp;h=31359c0e8f21b27a79decdaa7532b110aa3c257f;hp=55b7ba9cf759b699ff3d18622597c2138ae93976;hb=d57c91811b8f989bcaa4d5a238c65e9ffcc3b1d4;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index 55b7ba9c..31359c0e 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "nickview.h" @@ -36,7 +36,7 @@ #include "types.h" NickView::NickView(QWidget *parent) - : QTreeView(parent) + : TreeViewTouch(parent) { setIndentation(10); header()->hide(); @@ -80,14 +80,14 @@ void NickView::setModel(QAbstractItemModel *model_) if (model()) disconnect(model(), 0, this, 0); - QTreeView::setModel(model_); + TreeViewTouch::setModel(model_); init(); } void NickView::rowsInserted(const QModelIndex &parent, int start, int end) { - QTreeView::rowsInserted(parent, start, end); + TreeViewTouch::rowsInserted(parent, start, end); if (model()->data(parent, NetworkModel::ItemTypeRole) == NetworkModel::UserCategoryItemType && !isExpanded(parent)) { unanimatedExpandAll(); } @@ -104,7 +104,7 @@ void NickView::setRootIndex(const QModelIndex &index) QModelIndexList NickView::selectedIndexes() const { - QModelIndexList indexList = QTreeView::selectedIndexes(); + QModelIndexList indexList = TreeViewTouch::selectedIndexes(); // make sure the item we clicked on is first if (indexList.contains(currentIndex())) {