ctor initializers are wrongly (well, in this context) detected as functions and the refactor menu offers "Change Signature", "Add similar", etc...
sample:
class test
{
public:
test(int var, long vartoo) : m_refactorme(var), m_refactormetoo(vartoo) {}
private:
int m_refactorme;
long m_refactormetoo;
};
Use the refactor menu items on the inidicated member vars in the ctor.