diff options
Diffstat (limited to 'gui/dialogs/ScreenshotDialog.h')
-rw-r--r-- | gui/dialogs/ScreenshotDialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/dialogs/ScreenshotDialog.h b/gui/dialogs/ScreenshotDialog.h index ac95b4f0..29dd6765 100644 --- a/gui/dialogs/ScreenshotDialog.h +++ b/gui/dialogs/ScreenshotDialog.h @@ -1,7 +1,7 @@ #pragma once #include <QDialog> -#include "logic/lists/ScreenshotList.h" +#include "logic/screenshots/ScreenshotList.h" class ImgurAlbumCreation; @@ -24,7 +24,7 @@ public: }; QString message() const; - QList<std::shared_ptr<ScreenShot>> selected() const; + QList<ScreenshotPtr> selected() const; private slots: @@ -35,6 +35,6 @@ slots: private: Ui::ScreenshotDialog *ui; ScreenshotList *m_list; - QList<std::shared_ptr<ScreenShot>> m_uploaded; + QList<ScreenshotPtr> m_uploaded; std::shared_ptr<ImgurAlbumCreation> m_imgurAlbum; }; |