I see what you are trying to do now, and also why this is not working. The VA Refactoring commands have to work slightly differently, since often the symbol context cannot be picked up from the caret position. E.g. when the refactoring is triggered via Right click in VA Outline.
What exactly are you trying to achieve? You mention calling the base class method. Using the following simple code example:
class testFindRefBase
{
public:
testFindRefBase();
const char *displayResult() { return "base format"; }
void testCallingBaseForm(int nParam1, int nParam2) { }
};
class testFindRefChild : public testFindRefBase
{
public:
testFindRefChild();
const char *displayResult() { return "child format"; }
void testCallingBaseForm(int nParam1, int nParam2)
{
|
}
};
at this point I type "base", which is the shortcut for a new VA Snippet I have just added:
$BaseClassName$::$MethodName$( $MethodArgs$ );
which inserts a call to the base class version of this function, which sounds like it is what you want.