Bug 119188 - align right varialbe names when documenting current function
Summary: align right varialbe names when documenting current function
Status: RESOLVED LATER
Alias: None
Product: kdevelop
Classification: Applications
Component: Doxygen integration (show other bugs)
Version: 3.1.2
Platform: unspecified Linux
: NOR wishlist
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-12-29 17:28 UTC by Imre Péntek
Modified: 2008-06-30 20:16 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Imre Péntek 2005-12-29 17:28:58 UTC
Version:           3.1.2 (using KDE KDE 3.5.0)
Installed from:    Unlisted Binary Package
Compiler:          gcc version 3.3.4 Configured with: /var/uhubuild/work/compile/configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --enable-languages=c,c++,objc,java,f77,pascal --enable-shared --with-gnu-as --with-gnu-ld --with-system-zlib --host=i586-uhu-linux; Thread model: posix
OS:                Linux

When I press ctrl+shift+S to invoke "document current function" feature I will see:
/**
 * 
 * @param x 
 * @param LongNamedParam 
 * @param par1 
 * @param par2 
 * @param par3 
 * @param a 
 * @param b 
 * @param c 
 * @return 
 */
void *MyRoutine(char *x,int LongNamedParam,int par1,int par2,int &par3,int a,const int b,const int &c)

But I would prefer to see:
/**
 * 
 * @param              x 
 * @param LongNamedParam 
 * @param           par1 
 * @param           par2 
 * @param           par3 
 * @param              a 
 * @param              b 
 * @param              c 
 * @return               
 */
void *MyRoutine(char *x,int LongNamedParam,int par1,int par2,int &par3,int a,const int b,const int &c)

So I would prefer the variable names to be aligned right, padded with spaces.
Comment 1 Andreas Pakulat 2008-06-30 20:16:42 UTC
no interest for a long time, please re-open if somebody wants to work on this.