Skip to content
Snippets Groups Projects
Commit 69cd22ba authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

Fixed the indentation of the Q_OBJECT macro in new class wizard

parent f1c9b1ca
No related branches found
No related tags found
No related merge requests found
......@@ -282,7 +282,7 @@ bool CppClassWizard::generateHeaderAndSource(const CppClassWizardParameters &par
headerStr << "\n";
headerStr << namespaceIndent << "{\n";
if (defineQObjectMacro)
headerStr << namespaceIndent << "Q_OBJECT\n";
headerStr << namespaceIndent << indent << "Q_OBJECT\n";
headerStr << namespaceIndent << "public:\n"
<< namespaceIndent << indent;
// Constructor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment