modernize: Reformat ALL the source... again!
[quassel.git] / src / uisupport / clickablelabel.h
index f7fd0f4..a788616 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2015 by the Quassel Project                        *
+ *   Copyright (C) 2005-2018 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef CLICKABLELABEL_H
-#define CLICKABLELABEL_H
+#pragma once
+
+#include "uisupport-export.h"
 
 #include <QLabel>
 
-class ClickableLabel : public QLabel
+class UISUPPORT_EXPORT ClickableLabel : public QLabel
 {
     Q_OBJECT
 
 public:
-    ClickableLabel(QWidget *parent = 0);
+    ClickableLabel(QWidget* parent = nullptr);
 
 signals:
     void clicked();
 
 protected:
-    void mouseReleaseEvent(QMouseEvent *event);
+    void mouseReleaseEvent(QMouseEvent* event) override;
 };
-
-
-#endif //CLICKABLELABEL_H