summaryrefslogtreecommitdiffstats
path: root/progressdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'progressdialog.h')
-rw-r--r--progressdialog.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/progressdialog.h b/progressdialog.h
index d41a515..35ede38 100644
--- a/progressdialog.h
+++ b/progressdialog.h
@@ -9,7 +9,7 @@ class ProgressDialog : public QDialog {
Q_OBJECT
public:
ProgressDialog(QWidget *parent = 0, Qt::WindowFlags f = 0);
- void setLabelText(const QString &text);
+ void setLabelText(const QString &src, const QString &dst);
void setMaximum(int max) { mProgress->setMaximum(max); }
public slots:
@@ -19,7 +19,8 @@ class ProgressDialog : public QDialog {
void cancelled();
private:
- QLabel *mLabel;
+ QLabel *mSrc;
+ QLabel *mDst;
QProgressBar *mProgress;
};