I declared a Function in the following format:bool bThisIsAFunctionWithSeveralParameters(int iThisIsTheFirstParameter,
int iThisIsTheSecondParameter,
int iThisIsTheThirdParameter,
int iThisIsTheForthParameter);
Then I used Change Signature to change "First" to "FIRST". This results in:bool bThisIsAFunctionWithSeveralParameters(int iThisIsTheFIRSTParameter, int iThisIsTheSecondParameter, int iThisIsTheThirdParameter, int iThisIsTheForthParameter);
So, the line breaks are gone. If I rename the function, they are retained. Is it possible to retain the line breaks also when changing the signature? I guess there might be some cases where this isn't possible, but maybe it possible for the general case?
Regards,
Marcus.