Fix memory leak in system

This commit is contained in:
robotbrain
2014-02-24 17:49:18 -05:00
parent 55e21737dd
commit b1cddb4600
3 changed files with 7 additions and 7 deletions

View File

@ -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;
};