From kdevelop-bugs Thu Dec 29 16:28:59 2005 From: kdevelop-bugs-admin () barney ! cs ! uni-potsdam ! de Date: Thu, 29 Dec 2005 16:28:59 +0000 To: kdevelop-bugs Subject: [Bug 119188] New: align right varialbe names when documenting current function Message-Id: <20051229172858.119188.pentek_i () inf ! elte ! hu> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=118306944808707 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=119188 Summary: align right varialbe names when documenting current function Product: kdevelop Version: 3.1.2 Platform: unspecified OS/Version: Linux Status: UNCONFIRMED Severity: wishlist Priority: NOR Component: general AssignedTo: kdevelop-bugs kdevelop org ReportedBy: pentek_i inf elte hu 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.