X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbuffermodel.cpp;h=0d9ec2d961818cd210ee5620185415f63ac01eec;hp=e5011f2e9b1c87ed4fd18fed58fe2a850184d333;hb=fcacaaf16551524c7ebb6114254d005274cc3d63;hpb=714b39660fe19e7f092880019429c8da76ee2bd5 diff --git a/src/client/buffermodel.cpp b/src/client/buffermodel.cpp index e5011f2e..0d9ec2d9 100644 --- a/src/client/buffermodel.cpp +++ b/src/client/buffermodel.cpp @@ -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); }