CVS commit by okellogg:
Fix generated namespace termination.
M +1 -1 cppwriter.cpp 1.15
--- kdesdk/umbrello/umbrello/codegenerators/cppwriter.cpp #1.14:1.15
@@ -235,5 +235,5 @@ void CppWriter::writeHeaderFile (UMLClas
h << endl << "};" << endl; // end of class header
if(!c->getPackage().isEmpty() && WRITE_PACKAGE_NAMESPACE)
- h << "}; // end of package namespace" << endl;
+ h << "} // end of package namespace" << endl;
h << endl << "#endif // " << hashDefine + "_H" << endl;
return;