src: Yearly copyright bump
[quassel.git] / src / uisupport / tabcompleter.h
index a0e6074..9611192 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
 /***************************************************************************
- *   Copyright (C) 2005-2018 by the Quassel Project                        *
+ *   Copyright (C) 2005-2019 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -22,9 +22,9 @@
 
 #include "uisupport-export.h"
 
 
 #include "uisupport-export.h"
 
+#include <QMap>
 #include <QPointer>
 #include <QString>
 #include <QPointer>
 #include <QString>
-#include <QMap>
 
 #include "types.h"
 
 
 #include "types.h"
 
@@ -37,26 +37,27 @@ class UISUPPORT_EXPORT TabCompleter : public QObject
     Q_OBJECT
 
 public:
     Q_OBJECT
 
 public:
-    enum Type {
+    enum Type
+    {
         UserTab = 0x01,
         ChannelTab = 0x02
     };
 
         UserTab = 0x01,
         ChannelTab = 0x02
     };
 
-    explicit TabCompleter(MultiLineEdit *inputLine_);
+    explicit TabCompleter(MultiLineEditinputLine_);
 
     void reset();
     void complete();
 
 
     void reset();
     void complete();
 
-    bool eventFilter(QObject *obj, QEvent *event) override;
+    bool eventFilter(QObject* obj, QEvent* event) override;
 
 public slots:
     void onTabCompletionKey();
 
 private:
 
 public slots:
     void onTabCompletionKey();
 
 private:
-
-    struct CompletionKey {
-        inline CompletionKey(const QString &n) { contents = n; }
-        bool operator<(const CompletionKey &other) const;
+    struct CompletionKey
+    {
+        inline CompletionKey(const QStringn) { contents = n; }
+        bool operator<(const CompletionKeyother) const;
         QString contents;
     };
 
         QString contents;
     };
 
@@ -64,7 +65,7 @@ private:
     bool _enabled;
     QString _nickSuffix;
 
     bool _enabled;
     QString _nickSuffix;
 
-    static const Network *_currentNetwork;
+    static const Network_currentNetwork;
     static BufferId _currentBufferId;
     static QString _currentBufferName;
     static Type _completionType;
     static BufferId _currentBufferId;
     static QString _currentBufferName;
     static Type _completionType;