]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/views/dolphinfileitemlistwidget.h
Merge branch 'Applications/19.08'
[dolphin.git] / src / views / dolphinfileitemlistwidget.h
index 5f9cc3a5ab42d7cc406426c9cf76ca8eb64d7ed8..5c2d17eec5a3834fac0c5948cf0047924e02ab4a 100644 (file)
 #ifndef DOLPHINFILEITEMLISTWIDGET_H
 #define DOLPHINFILEITEMLISTWIDGET_H
 
-#include "libdolphin_export.h"
-
-#include <kitemviews/kfileitemlistwidget.h>
-#include <kversioncontrolplugin2.h>
+#include "dolphin_export.h"
+#include "kitemviews/kfileitemlistwidget.h"
+#include "versioncontrol/kversioncontrolplugin.h"
 
 /**
  * @brief Extends KFileItemListWidget to handle the "version" role.
  * The "version" role is set if version-control-plugins have been enabled.
  * @see KVersionControlPlugin
  */
-class LIBDOLPHINPRIVATE_EXPORT DolphinFileItemListWidget : public KFileItemListWidget
+class DOLPHIN_EXPORT DolphinFileItemListWidget : public KFileItemListWidget
 {
     Q_OBJECT
 
 public:
     DolphinFileItemListWidget(KItemListWidgetInformant* informant, QGraphicsItem* parent);
-    virtual ~DolphinFileItemListWidget();
+    ~DolphinFileItemListWidget() override;
 
 protected:
-    virtual void refreshCache() Q_DECL_OVERRIDE;
+    void refreshCache() override;
 
 private:
-    static QPixmap overlayForState(KVersionControlPlugin2::ItemVersion version, int size);
+    static QPixmap overlayForState(KVersionControlPlugin::ItemVersion version, int size);
 
 };