Similar example:
int nTestVariable;
nTestVariable = ::GetTickCount();
now in the next line type "nT" and VA will suggest "nTestVariable" - accept it and type " = ", now VA will suggest "::GetTickCount()" - accept it again, but instead of
nTestVariable = ::GetTickCount()
you'll have
nTestVariable =::GetTickCount()
Note missing (deleted) space after the equals sign.