Bug 386119

Summary: Indentation of selected doxygen comments messed them up
Product: [Applications] kdevelop Reporter: Ambroz Bizjak <ambrop7>
Component: Language Support: CPP (Clang-based)Assignee: kdevelop-bugs-null
Status: REPORTED ---    
Severity: normal CC: aspotashev, b.buschinski
Priority: NOR    
Version: 5.1.2   
Target Milestone: ---   
Platform: Other   
OS: Linux   
Latest Commit: Version Fixed In:
Sentry Crash Report:

Description Ambroz Bizjak 2017-10-23 18:34:20 UTC
Seleting C++ code which includes doxygen style comments like this one:

/**
 * Lalala
 */

and using tab or shift-tab to change the indentation ruins the formatting of the comment, into this (when increasing indentation):

/**
* Lalala
*/

or into this (when decreasing indentation):

/**
    * Lalala
    */