-
Bug
-
Resolution: Unresolved
-
Not Evaluated
-
None
-
Qt Creator 17.0.1, Qt Creator 18.0.0-beta1
-
None
When I want to use "Auto-indent Selection" (e.g. Ctrl+I) for the following code
public:
/*!
* \brief Foo
*/
Foo();
I get the wrong result:
public:
/*!
* \brief Foo
*/
Foo();
I would expect, that the comment lines belonging to a documentation comment is indented as a documentation section:
public:
/*!
* \brief Foo
*/
Foo();
This is the result, that you get, if the documentation comment would have been created in the right indentation from the beginning.