diff --git a/src/plugins/cppeditor/cppinsertdecldef.cpp b/src/plugins/cppeditor/cppinsertdecldef.cpp index e7ae40d85b3c376a752d349cdb3317a8e86950ae..6e2d51ab9af0491f5f4edbddaae1c78c08bfe928 100644 --- a/src/plugins/cppeditor/cppinsertdecldef.cpp +++ b/src/plugins/cppeditor/cppinsertdecldef.cpp @@ -155,31 +155,31 @@ QList<CppQuickFixOperation::Ptr> DeclFromDef::match(const CppQuickFixState &stat new InsertDeclOperation(state, idx, fn, clazz, InsertionPointLocator::Public, decl))); - results.append( - singleResult( - new InsertDeclOperation(state, idx, fn, clazz, - InsertionPointLocator::Protected, - decl))); - results.append( - singleResult( - new InsertDeclOperation(state, idx, fn, clazz, - InsertionPointLocator::Private, - decl))); - results.append( - singleResult( - new InsertDeclOperation(state, idx, fn, clazz, - InsertionPointLocator::PublicSlot, - decl))); - results.append( - singleResult( - new InsertDeclOperation(state, idx, fn, clazz, - InsertionPointLocator::ProtectedSlot, - decl))); - results.append( - singleResult( - new InsertDeclOperation(state, idx, fn, clazz, - InsertionPointLocator::PrivateSlot, - decl))); +// results.append( +// singleResult( +// new InsertDeclOperation(state, idx, fn, clazz, +// InsertionPointLocator::Protected, +// decl))); +// results.append( +// singleResult( +// new InsertDeclOperation(state, idx, fn, clazz, +// InsertionPointLocator::Private, +// decl))); +// results.append( +// singleResult( +// new InsertDeclOperation(state, idx, fn, clazz, +// InsertionPointLocator::PublicSlot, +// decl))); +// results.append( +// singleResult( +// new InsertDeclOperation(state, idx, fn, clazz, +// InsertionPointLocator::ProtectedSlot, +// decl))); +// results.append( +// singleResult( +// new InsertDeclOperation(state, idx, fn, clazz, +// InsertionPointLocator::PrivateSlot, +// decl))); return results; } //! \todo support insertion of non-methods into namespaces }