[Uml-devel] kdesdk/umbrello/umbrello/codegenerators
Jonathan Riddell
jri at jriddell.org
Tue Feb 11 12:51:05 UTC 2003
CVS commit by jriddell:
removes a couple of compiler warning
M +2 -2 adawriter.cpp 1.2
--- kdesdk/umbrello/umbrello/codegenerators/adawriter.cpp #1.1:1.2
@@ -190,5 +190,5 @@ void AdaWriter::writeClass(UMLConcept *c
ada << spc() << "type " << classname << " is(\n";
indentlevel++;
- int i = 0;
+ uint i = 0;
for (at = atl->first(); at; at = atl->next()) {
QString enumLiteral = cleanName(at->getName());
@@ -451,5 +451,5 @@ void AdaWriter::writeOperation(UMLOperat
}
if (atl->count()) {
- int i = 0;
+ uint i = 0;
indentlevel++;
for (UMLAttribute *at = atl->first(); at; at = atl->next()) {
More information about the umbrello-devel
mailing list