X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.cpp;h=d9e84ec7d9cce46614cd704acdfbf8d9de2d9f72;hp=31359c0e8f21b27a79decdaa7532b110aa3c257f;hb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;hpb=5b164bbc62960cea62a31287f679197b623ad7ac diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index 31359c0e..d9e84ec7 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -47,17 +47,15 @@ NickView::NickView(QWidget *parent) setContextMenuPolicy(Qt::CustomContextMenu); setSelectionMode(QAbstractItemView::ExtendedSelection); -// // breaks with Qt 4.8 -// if(QString("4.8.0") > qVersion()) // FIXME breaks with Qt versions >= 4.10! setAnimated(true); connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), SLOT(showContextMenu(const QPoint &))); -#if defined Q_WS_QWS || defined Q_WS_X11 - connect(this, SIGNAL(doubleClicked(QModelIndex)), SLOT(startQuery(QModelIndex))); -#else +#if defined Q_OS_MACOS || defined Q_OS_WIN // afaik this is better on Mac and Windows connect(this, SIGNAL(activated(QModelIndex)), SLOT(startQuery(QModelIndex))); +#else + connect(this, SIGNAL(doubleClicked(QModelIndex)), SLOT(startQuery(QModelIndex))); #endif } @@ -78,7 +76,7 @@ void NickView::init() void NickView::setModel(QAbstractItemModel *model_) { if (model()) - disconnect(model(), 0, this, 0); + disconnect(model(), nullptr, this, nullptr); TreeViewTouch::setModel(model_); init();