SVN commit 993510 by pino: add newline in generated code at the end of the declaration of function bodies in dpointer mode ... in short: -void FooConfig::setSomething( int v ){ +void FooConfig::setSomething( int v ) +{ M +1 -1 kconfig_compiler.cpp --- trunk/KDE/kdelibs/kdecore/kconfig_compiler/kconfig_compiler.cpp #993509:993510 @@ -2111,7 +2111,7 @@ cpp << enumType(*itEntry); else cpp << param( t ); - cpp << " v )"; + cpp << " v )" << endl; // function body inline only if not using dpointer // for BC mode cpp << "{" << endl;