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.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/gui/dialogs/ScreenshotDialog.h b/gui/dialogs/ScreenshotDialog.h
index d3f629e7..1ca27bdd 100644
--- a/gui/dialogs/ScreenshotDialog.h
+++ b/gui/dialogs/ScreenshotDialog.h
@@ -18,12 +18,21 @@ public:
explicit ScreenshotDialog(ScreenshotList *list, QWidget *parent = 0);
~ScreenshotDialog();
- QList<ScreenShot *> selected();
+ enum
+ {
+ NothingDone = 0x42
+ };
+
+ QList<ScreenShot *> uploaded() const;
private
slots:
+ void on_buttonBox_accepted();
private:
Ui::ScreenshotDialog *ui;
ScreenshotList *m_list;
+ QList<ScreenShot *> m_uploaded;
+
+ QList<ScreenShot *> selected() const;
};