X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fselectionmodelsynchronizer.h;h=b830d31ad2c41f4a391d18471dc15901d3222a5c;hp=17bca3a56aa226c2aef6b6bdc7afe7fd9ac3cec1;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=68878dc8366f2f4a0afe132847aad9a51a80cdbf diff --git a/src/client/selectionmodelsynchronizer.h b/src/client/selectionmodelsynchronizer.h index 17bca3a5..b830d31a 100644 --- a/src/client/selectionmodelsynchronizer.h +++ b/src/client/selectionmodelsynchronizer.h @@ -18,20 +18,21 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef _SELECTIONMODELSYNCHRONIZER_H_ -#define _SELECTIONMODELSYNCHRONIZER_H_ +#pragma once + +#include "client-export.h" #include #include class QAbstractItemModel; -class SelectionModelSynchronizer : public QObject +class CLIENT_EXPORT SelectionModelSynchronizer : public QObject { Q_OBJECT public: - SelectionModelSynchronizer(QAbstractItemModel *parent = 0); + SelectionModelSynchronizer(QAbstractItemModel *parent = nullptr); void synchronizeSelectionModel(QItemSelectionModel *selectionModel); void removeSelectionModel(QItemSelectionModel *selectionModel); @@ -56,8 +57,8 @@ private slots: private: QAbstractItemModel *_model; QItemSelectionModel _selectionModel; - bool _changeCurrentEnabled; - bool _changeSelectionEnabled; + bool _changeCurrentEnabled{true}; + bool _changeSelectionEnabled{true}; bool checkBaseModel(QItemSelectionModel *model); QModelIndex mapFromSource(const QModelIndex &sourceIndex, const QItemSelectionModel *selectionModel); @@ -67,6 +68,3 @@ private: QSet _selectionModels; }; - - -#endif