summaryrefslogtreecommitdiffstats
path: root/logic/screenshots
diff options
context:
space:
mode:
Diffstat (limited to 'logic/screenshots')
-rw-r--r--logic/screenshots/ScreenshotList.cpp2
-rw-r--r--logic/screenshots/ScreenshotList.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/logic/screenshots/ScreenshotList.cpp b/logic/screenshots/ScreenshotList.cpp
index 8a64dc36..a34f4d46 100644
--- a/logic/screenshots/ScreenshotList.cpp
+++ b/logic/screenshots/ScreenshotList.cpp
@@ -7,7 +7,7 @@
#include "gui/dialogs/ProgressDialog.h"
#include "gui/dialogs/CustomMessageBox.h"
-ScreenshotList::ScreenshotList(BaseInstance *instance, QObject *parent)
+ScreenshotList::ScreenshotList(InstancePtr instance, QObject *parent)
: QAbstractListModel(parent), m_instance(instance)
{
}
diff --git a/logic/screenshots/ScreenshotList.h b/logic/screenshots/ScreenshotList.h
index ca6314e9..dc26a698 100644
--- a/logic/screenshots/ScreenshotList.h
+++ b/logic/screenshots/ScreenshotList.h
@@ -10,7 +10,7 @@ class ScreenshotList : public QAbstractListModel
{
Q_OBJECT
public:
- ScreenshotList(BaseInstance *instance, QObject *parent = 0);
+ ScreenshotList(InstancePtr instance, QObject *parent = 0);
QVariant data(const QModelIndex &index, int role) const;
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
@@ -31,7 +31,7 @@ public:
return m_screenshots;
}
- BaseInstance *instance() const
+ InstancePtr instance() const
{
return m_instance;
}
@@ -45,7 +45,7 @@ slots:
private:
QList<ScreenshotPtr> m_screenshots;
- BaseInstance *m_instance;
+ InstancePtr m_instance;
};
class ScreenshotLoadTask : public Task