Adjust shared library template to our preferred coding style

Task-number: QTCREATORBUG-6786
Change-Id: I7fda54abfff8a06feedeb11d9a9f93e4ab5e3463
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
Daniel Teske
2012-01-09 16:41:32 +01:00
parent 904b915b6a
commit d99097aa53

View File

@@ -110,7 +110,7 @@ void LibraryParameters::generateCode(QtProjectParameters:: Type t,
headerStr << unqualifiedClassName;
if (!baseClassName.isEmpty())
headerStr << " : public " << baseClassName;
headerStr << " {\n";
headerStr << "\n{\n";
// Is this a QObject (plugin)
const bool inheritsQObject = t == QtProjectParameters::Qt4Plugin;