SVN commit 514661 by winterz: another fix. M +2 -2 creator.cpp --- trunk/KDE/kdepim/kode/kxml_compiler/creator.cpp #514660:514661 @@ -218,7 +218,7 @@ code += "xml += indent() + \"<" + e->name + ">\" + " + e->name + "() + \"name + ">\\n\";"; } else { - code += "xml += " + type + "()->writeElement();"; + code += "xml += " + type + "().writeElement();"; } } } @@ -237,7 +237,7 @@ code.unindent(); code += "}"; } else { - code += "xml += " + type + "()->writeElement()"; + code += "xml += " + type + "().writeElement()"; } }