[Scummvm-cvs-logs] CVS: scummvm/gui dialog.cpp,1.28,1.29

Max Horn fingolfin at users.sourceforge.net
Fri Jul 26 17:47:02 CEST 2002


Update of /cvsroot/scummvm/scummvm/gui
In directory usw-pr-cvs1:/tmp/cvs-serv8440/gui

Modified Files:
	dialog.cpp 
Log Message:
removed test widgets from save/load dialog

Index: dialog.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/dialog.cpp,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- dialog.cpp	27 Jul 2002 00:36:09 -0000	1.28
+++ dialog.cpp	27 Jul 2002 00:46:05 -0000	1.29
@@ -285,18 +285,14 @@
 	addButton(200, 80, 54, 16, CUSTOM_STRING(17), kOptionsCmd, 'O');	// Options
 	addButton(200, 100, 54, 16, RES_STRING(8), kQuitCmd, 'Q');	// Quit
 	
-	// FIXME - test
-	new CheckboxWidget(this, 10, 20, 90, 16, "Toggle me", 0);
-	
-	// FIXME - test
-	_savegameList = new ListWidget(this, 10, 40, 180, 74);
+	_savegameList = new ListWidget(this, 10, 20, 180, 94);
 
 	// Get savegame names
 	ScummVM::StringList l;
 	char name[32];
 	Scumm *s = _gui->getScumm();
 
-	for (int i = 0; i <= 80; i++) {		// 80 I got from old gui
+	for (int i = 0; i <= 80; i++) {		// 80 - got this value from the old GUI
 		s->getSavegameName(i, name);
 		l.push_back(name);
 	}





More information about the Scummvm-git-logs mailing list