hello, i use qt sdk 1.2 and i have a question, how do i change the code style for c++? I can't find "advanced" functions or options to do it in Qt creator, it just shows indent or not a bracket or something like that, i dont like this:
Qt Code:
  1. void method()
  2. {
  3. //code
  4. }
To copy to clipboard, switch view to plain text mode 

or

Qt Code:
  1. myClass::myClass()
  2. : var(value)
  3. {
  4. //code
  5. }
To copy to clipboard, switch view to plain text mode 

i prefer

Qt Code:
  1. myClass::myClass() : var(value) {
  2. //code
  3. }
To copy to clipboard, switch view to plain text mode 

i'm talking about creating a new class or using "refactor" to add a definition, i know i can type my code using my favorite style but i don't want to do it manually when creating a class or something like that
thanks