DaveChapman
New Member
8 Posts |
Posted - Jan 23 2004 : 10:26:39 AM
|
In VA 1106 on VC6, if a class definition contained
void SetName(const char *pName);
When I started to implement the function and got as far as
void ClassName::SetName(
then VA would pop up 'const char *pName' and I could just hit Enter to have it pasted in.
With VA-X, after the ( it offers me 'const' which I accept, then 'char' which I accept, then 'const char *pName', so I'm ending up with void ClassName::SetName(const charconst char *pName
I haven't found a way to get to the 'const char *pName' without accepting the two suggestions of 'const' and 'char' first...
|
|