[Qt] remove GUIUtil::getSaveFileName() default arguments

- harmonize function with GUIUtil::getOpenFileName()
- also make PNG Image singular (grammar)
This commit is contained in:
Philip Kaufmann
2013-11-11 22:57:25 +01:00
parent a6aa179699
commit 4f7d496b82
5 changed files with 9 additions and 10 deletions

View File

@@ -64,7 +64,7 @@ void QRImageWidget::mousePressEvent(QMouseEvent *event)
void QRImageWidget::saveImage()
{
QString fn = GUIUtil::getSaveFileName(this, tr("Save QR Code"), QString(), tr("PNG Images (*.png)"));
QString fn = GUIUtil::getSaveFileName(this, tr("Save QR Code"), QString(), tr("PNG Image (*.png)"), NULL);
if (!fn.isEmpty())
{
exportImage().save(fn);