X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbuffermodel.cpp;h=0d9ec2d961818cd210ee5620185415f63ac01eec;hp=747325d6e20a190f307045238adb8a22ef5b23fa;hb=8f2ee00f4edef1693628d3af0bdee84d725eb754;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222 diff --git a/src/client/buffermodel.cpp b/src/client/buffermodel.cpp index 747325d6..0d9ec2d9 100644 --- a/src/client/buffermodel.cpp +++ b/src/client/buffermodel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 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()))); }