From 73e84ec660737616a22f5e8edbe95a69d2652c99 Mon Sep 17 00:00:00 2001 From: clifford Date: Wed, 6 Jan 2010 06:07:23 +0000 Subject: [PATCH] Clifford Wolf: Indenting fix git-svn-id: http://svn.clifford.at/openscad/trunk@213 b57f626f-c46c-0410-a088-ec61d464b74c --- mainwin.cc | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/mainwin.cc b/mainwin.cc index 534d1991..5fcead0b 100644 --- a/mainwin.cc +++ b/mainwin.cc @@ -715,23 +715,20 @@ void MainWindow::actionSave() void MainWindow::actionSaveAs() { - QString new_filename = - QFileDialog::getSaveFileName(this, "Save File", - this->fileName.isEmpty()?"Untitled.scad":this->fileName, - "OpenSCAD Designs (*.scad)"); + QString new_filename = QFileDialog::getSaveFileName(this, "Save File", + this->fileName.isEmpty()?"Untitled.scad":this->fileName, + "OpenSCAD Designs (*.scad)"); if (!new_filename.isEmpty()) { if (QFileInfo(new_filename).suffix().isEmpty()) { new_filename.append(".scad"); - // Manual overwrite check since Qt doesn't do it, when using the + // Manual overwrite check since Qt doesn't do it, when using the // defaultSuffix property QFileInfo info(new_filename); if (info.exists()) { if (QMessageBox::warning(this, windowTitle(), - tr("%1 already exists.\nDo you want to replace it?") - .arg(info.fileName()), - QMessageBox::Yes | QMessageBox::No, QMessageBox::No) - != QMessageBox::Yes) { + tr("%1 already exists.\nDo you want to replace it?").arg(info.fileName()), + QMessageBox::Yes | QMessageBox::No, QMessageBox::No) != QMessageBox::Yes) { return; } }