[Uml-devel] CVS: kdesdk/umbrello/umbrello uml.cpp,1.7,1.8

kde at office.kde.org kde at office.kde.org
Sat Feb 1 14:46:44 UTC 2003


Update of /home/kde/kdesdk/umbrello/umbrello
In directory office:/tmp/cvs-serv30833

Modified Files:
	uml.cpp 
Log Message:
remove unsigned/signed comparison compiler warning


Index: uml.cpp
===================================================================
RCS file: /home/kde/kdesdk/umbrello/umbrello/uml.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- uml.cpp	1 Feb 2003 19:55:05 -0000	1.7
+++ uml.cpp	1 Feb 2003 22:45:00 -0000	1.8
@@ -248,8 +248,9 @@
 	int zoom = doc->getCurrentView()->currentZoom();
 
 	//first uncheck all
-	for(int index = 0; index < zoomSelect->count(); index++)
+	for (uint index = 0; index < zoomSelect->count(); index++) {
 		zoomSelect->setItemChecked(zoomSelect->idAt(index),false);
+	}
 	zoomSelect->setItemChecked(zoom,true);
 }
 





More information about the umbrello-devel mailing list