[Uml-devel] kdesdk/umbrello/umbrello/codegenerators
Jonathan Riddell
jri at jriddell.org
Fri Feb 28 13:09:09 UTC 2003
CVS commit by jriddell:
Fix compile problem, I had nested comments
M +1 -3 javawriter.cpp 1.5
M +1 -1 javawriter.h 1.3
--- kdesdk/umbrello/umbrello/codegenerators/javawriter.cpp #1.4:1.5
@@ -685,5 +685,4 @@ void JavaWriter::writeOperations(QList<U
}
-// check that initial values of strings have quotes around them
QString JavaWriter::fixInitialStringDeclValue(QString value, QString type)
{
@@ -698,5 +697,4 @@ QString JavaWriter::fixInitialStringDecl
}
-// a little method for converting scope to string value
QString JavaWriter::scopeToJavaDecl(Uml::Scope scope)
{
@@ -727,5 +725,5 @@ QString JavaWriter::capitaliseFirstLette
{
QChar firstChar = string.at(0);
- string.replace ( 0, 1, firstChar.upper());
+ string.replace( 0, 1, firstChar.upper());
return string;
}
--- kdesdk/umbrello/umbrello/codegenerators/javawriter.h #1.2:1.3
@@ -149,5 +149,5 @@ private:
/**
- * Writes /** */ documentation
+ * Writes a /** documentation comment
*/
void writeDocumentation(QString header, QString body, QString end, QString indent, QTextStream &java);
More information about the umbrello-devel
mailing list