modernize: Prefer default member init over ctor init
[quassel.git] / src / qtui / chatviewsearchcontroller.h
index 8c0aa5c..8e9c8d6 100644 (file)
@@ -67,14 +67,14 @@ signals:
 
 private:
     QString _searchString;
-    ChatScene *_scene;
+    ChatScene *_scene{nullptr};
     QList<SearchHighlightItem *> _highlightItems;
-    int _currentHighlight;
+    int _currentHighlight{0};
 
-    bool _caseSensitive;
-    bool _searchSenders;
-    bool _searchMsgs;
-    bool _searchOnlyRegularMsgs;
+    bool _caseSensitive{false};
+    bool _searchSenders{false};
+    bool _searchMsgs{true};
+    bool _searchOnlyRegularMsgs{true};
 
     inline Qt::CaseSensitivity caseSensitive() const { return _caseSensitive ? Qt::CaseSensitive : Qt::CaseInsensitive; }
 
@@ -94,11 +94,11 @@ class SearchHighlightItem : public QObject, public QGraphicsItem
 
 public:
     SearchHighlightItem(QRectF wordRect, QGraphicsItem *parent = nullptr);
-    virtual inline QRectF boundingRect() const { return _boundingRect; }
+    inline QRectF boundingRect() const override { return _boundingRect; }
     void updateGeometry(qreal width, qreal height);
-    virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr);
+    void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr) override;
     enum { Type = ChatScene::SearchHighlightType };
-    virtual inline int type() const { return Type; }
+    inline int type() const override { return Type; }
 
     void setHighlighted(bool highlighted);