src/gui.cpp

changeset 497
c51941e590b6
parent 493
16766ac1bbd9
child 498
791c831c8020
--- a/src/gui.cpp	Thu Oct 03 21:48:11 2013 +0300
+++ b/src/gui.cpp	Sat Oct 05 12:51:13 2013 +0300
@@ -653,7 +653,7 @@
 void ForgeWindow::slot_editObject (QListWidgetItem* listitem)
 {	LDObject* obj = null;
 
-for (LDObject * it : LDFile::current()->objects())
+	for (LDObject* it : LDFile::current()->objects())
 	{	if (it->qObjListEntry == listitem)
 		{	obj = it;
 			break;
@@ -694,13 +694,12 @@
 void ForgeWindow::save (LDFile* f, bool saveAs)
 {	str path = f->name();
 
-	if (path.length() == 0 || saveAs)
+	if (saveAs || path.isEmpty())
 	{	path = QFileDialog::getSaveFileName (g_win, tr ("Save As"),
-											 LDFile::current()->name(), tr ("LDraw files (*.dat *.ldr)"));
+			LDFile::current()->name(), tr ("LDraw files (*.dat *.ldr)"));
 
-		if (path.length() == 0)
-		{	// User didn't give a file name. This happens if the user cancelled
-			// saving in the save file dialog. Abort.
+		if (path.isEmpty())
+		{	// User didn't give a file name, abort.
 			return;
 		}
 	}

mercurial