summaryrefslogtreecommitdiffstats
path: root/gui/dialogs/ScreenshotDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/dialogs/ScreenshotDialog.h')
-rw-r--r--gui/dialogs/ScreenshotDialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/dialogs/ScreenshotDialog.h b/gui/dialogs/ScreenshotDialog.h
index a406d1fe..ac95b4f0 100644
--- a/gui/dialogs/ScreenshotDialog.h
+++ b/gui/dialogs/ScreenshotDialog.h
@@ -24,7 +24,7 @@ public:
};
QString message() const;
- QList<ScreenShot *> selected() const;
+ QList<std::shared_ptr<ScreenShot>> selected() const;
private
slots:
@@ -35,6 +35,6 @@ slots:
private:
Ui::ScreenshotDialog *ui;
ScreenshotList *m_list;
- QList<ScreenShot *> m_uploaded;
+ QList<std::shared_ptr<ScreenShot>> m_uploaded;
std::shared_ptr<ImgurAlbumCreation> m_imgurAlbum;
};