From bb673a66f2e498d486031422df0929dc365f07e2 Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 11 Apr 2025 12:46:49 +0200 Subject: [PATCH] CppEditor: Code cosmetics Amends 48169d77247 More uniform indentation. And remove an unneeded class declaration. Change-Id: I6d09dc40ccde45ace066aee1968a89fd5325356b Reviewed-by: Christian Kandeler --- src/plugins/cppeditor/quickfixes/cppquickfix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/cppeditor/quickfixes/cppquickfix.h b/src/plugins/cppeditor/quickfixes/cppquickfix.h index e22afb2666d..71630e5bc29 100644 --- a/src/plugins/cppeditor/quickfixes/cppquickfix.h +++ b/src/plugins/cppeditor/quickfixes/cppquickfix.h @@ -19,7 +19,6 @@ namespace CppEditor { namespace Internal { -class CppQuickFixInterface; class CppQuickFixOperation : public TextEditor::QuickFixOperation, @@ -114,5 +113,6 @@ private: #define REGISTER_QUICKFIX_FACTORY_WITH_STANDARD_TEST(Factory) \ CppQuickFixFactory::registerFactoryWithStandardTest() #else -#define REGISTER_QUICKFIX_FACTORY_WITH_STANDARD_TEST(Factory) CppQuickFixFactory::registerFactory() +#define REGISTER_QUICKFIX_FACTORY_WITH_STANDARD_TEST(Factory) \ + CppQuickFixFactory::registerFactory() #endif