Review Request: fix for ';' placement after move into source action
    Jonas Jacobi 
    jonas.jacobi at web.de
       
    Tue Jan 24 10:42:40 UTC 2012
    
    
  
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/103780/
-----------------------------------------------------------
Review request for KDevelop.
Description
-------
Move into source action currently places the ';' at the opening '{' of the function body, this patch places it at the end of the signature:
Before:
class X {
 void foo()
 {
 }
};
became
class X {
 void foo()
 ;
};
After:
class X {
 void foo()
 {
 }
};
becomes
class X {
 void foo();
};
Diffs
-----
  languages/cpp/codegen/simplerefactoring.cpp fd62ccf 
Diff: http://git.reviewboard.kde.org/r/103780/diff/diff
Testing
-------
works for me
Thanks,
Jonas Jacobi
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kdevelop-devel/attachments/20120124/4e9dc342/attachment.html>
    
    
More information about the KDevelop-devel
mailing list