Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 VAX 1534: Find References missing virtuals

You must be registered to post a reply.
Click here to register.

Screensize:
UserName:
Password:
Format: BoldItalicizeUnderlineStrikethrough Align leftCenterAlign right Insert horizontal ruleUpload and insert imageInsert hyperlinkInsert email addressInsert codeInsert quoted textInsert listInsert Emoji
   
Message:

Forum code is on.
Html is off.

 
Check to subscribe to this topic.
   

T O P I C    R E V I E W
Uniwares Posted - Sep 15 2006 : 11:26:57 AM
VS2003, C++

Find references does not show the declaration of a virtual function in a derived class.
e.g.:

class BaseClass
{
  virtual bool Whatever() = 0;

  void SomeFunc() { Whatever(); }
};

class DerivedClass : public BaseClass
{
  virtual bool Whatever(); // FR does not show this one
}
-- in the derived.cpp
bool DerivedClass::Whatever()
{
  return false;
}


2   L A T E S T    R E P L I E S    (Newest First)
support Posted - Oct 06 2006 : 7:56:09 PM
Fixed in 1538.

Rename in a base class changes overriding names in derived classes. Rename of a overriding member in a derived class does not rename within a base class.
feline Posted - Sep 16 2006 : 5:11:14 PM
i ran into the same problem myself a while ago

case=1287

© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000