I want to remove the Hungarian Notation from a gigantic piece of code,but I'm not sure how the addon handles replaces.I mean - if I have:
void DoNothing(int *pNothing)
{
pNothing = 0;
};
And I click on 'pNothing' and rename it to 'nothing' wiht the VA refactor tool,will that only rename it only in this function or will it rename all pointers named pNothing in every function and class in the entire project?