modernize: Reformat ALL the source... again!
[quassel.git] / src / client / clientbufferviewconfig.h
index 44ee211..6f3738d 100644 (file)
 
 #pragma once
 
+#include "client-export.h"
+
 #include "bufferviewconfig.h"
 
-class ClientBufferViewConfig : public BufferViewConfig
+class CLIENT_EXPORT ClientBufferViewConfig : public BufferViewConfig
 {
     Q_OBJECT
 
 public:
-    ClientBufferViewConfig(int bufferViewId, QObject *parent = 0);
+    ClientBufferViewConfig(int bufferViewId, QObject* parent = nullptr);
 
     inline bool isLocked() { return _locked || sortAlphabetically(); }
     inline void setLocked(bool locked) { _locked = locked; }
@@ -35,7 +37,7 @@ public:
     inline void unlock() { setLocked(false); };
 
 private slots:
-    void ensureDecoration(); // remove this in next release
+    void ensureDecoration();  // remove this in next release
 
 private:
     bool _locked;