I want to change the braces coding style in Qt Creator 2.7.1. Currently, it is:
void bar(int i)
{
static int counter = 0;
counter += i;
}
But I want to change it to:
void bar(int i) {
static int counter = 0;
counter += i;
}
If I go to Options -> C++ -> Edit -> Braces
, I can only change the indent of the braces. Changing the position of the braces manually in the preview text field, doesn't take any effect.