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
171171 }
172172 writeInjectedCode (s, meta_class, TypeSystem::PyShellDeclaration);
173173 writeInjectedCode (s, meta_class, TypeSystem::PyInheritShellDeclaration, true );
174- s << " PythonQtInstanceWrapper* _wrapper; " << endl;
174+ s << " PythonQtInstanceWrapper* _wrapper;" << endl;
175175
176176 s << " };" << endl << endl;
177177 }
@@ -355,8 +355,7 @@ void ShellHeaderGenerator::write(QTextStream &s, const AbstractMetaClass *meta_c
355355 }
356356 }
357357 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;
360359 }
361360
362361 AbstractMetaFunctionList functions = getFunctionsToWrap (meta_class);
You can’t perform that action at this time.
0 commit comments