File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ void ShellHeaderGenerator::write(QTextStream &s, const AbstractMetaClass *meta_c
171
171
}
172
172
writeInjectedCode (s, meta_class, TypeSystem::PyShellDeclaration);
173
173
writeInjectedCode (s, meta_class, TypeSystem::PyInheritShellDeclaration, true );
174
- s << " PythonQtInstanceWrapper* _wrapper; " << endl;
174
+ s << " PythonQtInstanceWrapper* _wrapper;" << endl;
175
175
176
176
s << " };" << endl << endl;
177
177
}
@@ -355,8 +355,7 @@ void ShellHeaderGenerator::write(QTextStream &s, const AbstractMetaClass *meta_c
355
355
}
356
356
}
357
357
if (meta_class->hasPublicDestructor () && !meta_class->isNamespace ()) {
358
- s << " void delete_" << meta_class->name () << " (" << meta_class->qualifiedCppName () << " * obj) { delete obj; } " ;
359
- s << endl;
358
+ s << " void delete_" << meta_class->name () << " (" << meta_class->qualifiedCppName () << " * obj) { delete obj; }" << endl;
360
359
}
361
360
362
361
AbstractMetaFunctionList functions = getFunctionsToWrap (meta_class);
You can’t perform that action at this time.
0 commit comments