X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbuffermodel.cpp;h=0d9ec2d961818cd210ee5620185415f63ac01eec;hp=61d4e986975986c15ed9d2c7a204a75d8d771726;hb=fcacaaf16551524c7ebb6114254d005274cc3d63;hpb=b65b9f7615165e8700a44d59b7275a55558dd45b diff --git a/src/client/buffermodel.cpp b/src/client/buffermodel.cpp index 61d4e986..0d9ec2d9 100644 --- a/src/client/buffermodel.cpp +++ b/src/client/buffermodel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 * @@ -32,11 +32,11 @@ BufferModel::BufferModel(NetworkModel *parent) { setSourceModel(parent); if (Quassel::isOptionSet("debugbufferswitches")) { - connect(_selectionModelSynchronizer.selectionModel(), SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)), - this, SLOT(debug_currentChanged(const QModelIndex &, const QModelIndex &))); + connect(_selectionModelSynchronizer.selectionModel(), &QItemSelectionModel::currentChanged, + this, &BufferModel::debug_currentChanged); } - connect(Client::instance(), SIGNAL(networkCreated(NetworkId)), this, SLOT(newNetwork(NetworkId))); - connect(this, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(newBuffers(const QModelIndex &, int, int))); + connect(Client::instance(), &Client::networkCreated, this, &BufferModel::newNetwork); + connect(this, &QAbstractItemModel::rowsInserted, this, &BufferModel::newBuffers); } @@ -57,8 +57,8 @@ void BufferModel::newNetwork(NetworkId id) { const Network *net = Client::network(id); Q_ASSERT(net); - connect(net, SIGNAL(connectionStateSet(Network::ConnectionState)), - this, SLOT(networkConnectionChanged(Network::ConnectionState))); + connect(net, &Network::connectionStateSet, + this, &BufferModel::networkConnectionChanged); } @@ -70,7 +70,7 @@ void BufferModel::networkConnectionChanged(Network::ConnectionState state) if (currentIndex().isValid()) return; { - Network *net = qobject_cast(sender()); + auto *net = qobject_cast(sender()); Q_ASSERT(net); setCurrentIndex(mapFromSource(Client::networkModel()->networkIndex(net->networkId()))); }