summaryrefslogtreecommitdiffstats
path: root/progressdialog.h
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2016-12-06 11:18:07 +0100
committerArno <arno@disconnect.de>2016-12-06 11:18:07 +0100
commit0e02ad100b0e96c77b6030853bd88a6d4706a776 (patch)
treec5fe9bf96cb848795e5c760b8b775ed81070ed9b /progressdialog.h
parent0432c09d7889009beb9557e0546d0c4f240bb37e (diff)
downloadShemovCleaner-0e02ad100b0e96c77b6030853bd88a6d4706a776.tar.gz
ShemovCleaner-0e02ad100b0e96c77b6030853bd88a6d4706a776.tar.bz2
ShemovCleaner-0e02ad100b0e96c77b6030853bd88a6d4706a776.zip
Prettify ProgressDialog
Make it fixed width, show only the filename from the source instead of the full path and elide text if necessary.
Diffstat (limited to 'progressdialog.h')
-rw-r--r--progressdialog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/progressdialog.h b/progressdialog.h
index 6aee406..d41a515 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) { mLabel->setText(text); }
+ void setLabelText(const QString &text);
void setMaximum(int max) { mProgress->setMaximum(max); }
public slots: