diff options
| author | Philip Kaufmann <[email protected]> | 2013-11-11 22:57:25 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-11-11 22:57:25 +0100 |
| commit | 4f7d496b82210bf3235c1f8b41bfa821bfbfc54f (patch) | |
| tree | 8fb4c58eb06286577c083ade34d0bd9afef6ec51 /src/qt/guiutil.h | |
| parent | Merge pull request #3187 from Diapolo/netManager (diff) | |
| download | discoin-4f7d496b82210bf3235c1f8b41bfa821bfbfc54f.tar.xz discoin-4f7d496b82210bf3235c1f8b41bfa821bfbfc54f.zip | |
[Qt] remove GUIUtil::getSaveFileName() default arguments
- harmonize function with GUIUtil::getOpenFileName()
- also make PNG Image singular (grammar)
Diffstat (limited to 'src/qt/guiutil.h')
| -rw-r--r-- | src/qt/guiutil.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index ddff2de4c..b86fd9117 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -65,9 +65,9 @@ namespace GUIUtil @param[out] selectedSuffixOut Pointer to return the suffix (file type) that was selected (or 0). Can be useful when choosing the save file format based on suffix. */ - QString getSaveFileName(QWidget *parent=0, const QString &caption=QString(), - const QString &dir=QString(), const QString &filter=QString(), - QString *selectedSuffixOut=0); + QString getSaveFileName(QWidget *parent, const QString &caption, const QString &dir, + const QString &filter, + QString *selectedSuffixOut); /** Get open filename, convenience wrapper for QFileDialog::getOpenFileName. |