[Uml-devel] branches/KDE/3.5/kdesdk/umbrello/umbrello/codegenerators
Daniel Calviño Sánchez
danxuliu at gmail.com
Sat Jun 17 01:01:01 UTC 2006
SVN commit 552216 by danxuliu:
Added missed ".h" to the name of the superclass header files included in subclass header files.
M +1 -1 cppwriter.cpp
--- branches/KDE/3.5/kdesdk/umbrello/umbrello/codegenerators/cppwriter.cpp #552215:552216
@@ -333,7 +333,7 @@
for(UMLClassifier *classifier = superclasses.first(); classifier ;classifier = superclasses.next()) {
QString headerName = findFileName(classifier, ".h");
if (!headerName.isEmpty()) {
- cpp << "#include \"" << headerName << "\"" << m_endl;
+ cpp << "#include \"" << headerName << ".h\"" << m_endl;
}
}
More information about the umbrello-devel
mailing list