clazy: Convert many old-style connects into function pointer based
[quassel.git] / src / uisupport / abstractitemview.h
index fe2c8d0..785f4ad 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 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  *
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef ABSTRACTITEMVIEW_H
-#define ABSTRACTITEMVIEW_H
+#pragma once
+
+#include "uisupport-export.h"
 
 #include <QWidget>
 #include <QAbstractItemModel>
 #include <QAbstractItemDelegate>
 #include <QPointer>
 
-class AbstractItemView : public QWidget
+class UISUPPORT_EXPORT AbstractItemView : public QWidget
 {
     Q_OBJECT
 
 public:
-    AbstractItemView(QWidget *parent = 0);
+    AbstractItemView(QWidget *parent = nullptr);
 
     inline QAbstractItemModel *model() { return _model; }
     void setModel(QAbstractItemModel *model);
@@ -58,6 +59,3 @@ protected:
     QPointer<QAbstractItemModel> _model;
     QPointer<QItemSelectionModel> _selectionModel;
 };
-
-
-#endif // ABSTRACTITEMVIEW_H