X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.h;h=4c93e2c45431af62744f9a504217b24531a535cb;hp=08d57e81808c9bbb9ab46fdf17385fd9b796cd53;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=30b159cb876a9495de42e9a3e70ca050516f0805 diff --git a/src/uisupport/nickview.h b/src/uisupport/nickview.h index 08d57e81..4c93e2c4 100644 --- a/src/uisupport/nickview.h +++ b/src/uisupport/nickview.h @@ -32,10 +32,10 @@ class UISUPPORT_EXPORT NickView : public TreeViewTouch Q_OBJECT public: - NickView(QWidget *parent = nullptr); + NickView(QWidget* parent = nullptr); protected: - void rowsInserted(const QModelIndex &parent, int start, int end) override; + void rowsInserted(const QModelIndex& parent, int start, int end) override; //! This reimplementation ensures that the current index is first in list QModelIndexList selectedIndexes() const override; @@ -43,15 +43,15 @@ protected: void unanimatedExpandAll(); public slots: - void setModel(QAbstractItemModel *model) override; - void setRootIndex(const QModelIndex &index) override; + void setModel(QAbstractItemModel* model) override; + void setRootIndex(const QModelIndex& index) override; void init(); - void showContextMenu(const QPoint &pos); - void startQuery(const QModelIndex &modelIndex); + void showContextMenu(const QPoint& pos); + void startQuery(const QModelIndex& modelIndex); signals: void selectionUpdated(); private: - friend class NickListWidget; // needs selectedIndexes() + friend class NickListWidget; // needs selectedIndexes() };