modernize: Reformat ALL the source... again!
[quassel.git] / src / client / clientbacklogmanager.h
index aa58a4d..036eaa3 100644 (file)
@@ -32,10 +32,10 @@ class CLIENT_EXPORT ClientBacklogManager : public BacklogManager
     Q_OBJECT
 
 public:
-    ClientBacklogManager(QObject *parent = nullptr);
+    ClientBacklogManager(QObjectparent = nullptr);
 
     // helper for the backlogRequester, as it isn't a QObject and can't emit itself
-    inline void emitMessagesRequested(const QString &msg) const { emit messagesRequested(msg); }
+    inline void emitMessagesRequested(const QStringmsg) const { emit messagesRequested(msg); }
 
     void reset();
 
@@ -47,27 +47,26 @@ public slots:
     void requestInitialBacklog();
 
     void checkForBacklog(BufferId bufferId);
-    void checkForBacklog(const BufferIdList &bufferIds);
+    void checkForBacklog(const BufferIdListbufferIds);
 
 signals:
     void messagesReceived(BufferId bufferId, int count) const;
-    void messagesRequested(const QString &) const;
-    void messagesProcessed(const QString &) const;
+    void messagesRequested(const QString&) const;
+    void messagesProcessed(const QString&) const;
 
     void updateProgress(int, int);
 
 private:
     bool isBuffering();
-    BufferIdList filterNewBufferIds(const BufferIdList &bufferIds);
+    BufferIdList filterNewBufferIds(const BufferIdListbufferIds);
 
-    void dispatchMessages(const MessageList &messages, bool sort = false);
+    void dispatchMessages(const MessageListmessages, bool sort = false);
 
-    BacklogRequester *_requester{nullptr};
+    BacklogRequester_requester{nullptr};
     bool _initBacklogRequested{false};
     QSet<BufferId> _buffersRequested;
 };
 
-
 // inlines
 inline void ClientBacklogManager::checkForBacklog(BufferId bufferId)
 {