-
Suggestion
-
Resolution: Done
-
P2: Important
-
None
-
None
-
c41847ce5da4f40754f7ed90c3ad3d7db018d94a (qt-creator/qt-creator/master)
When choosing "Follow symbol under cursor" (F2) on the pure virtual "hello" function in the base class "Base" below, nothing happens (one ends up at the pure virtual base function). I think it would be better to instead get a small dialog where one can select which of the derived classed one wants to jump to, and go to the "hello" function in the choosen derived class.
class Base{
public:
Base(){}
virtual void hello()const=0;
};
class Derived1 : public Base{
public:
void hello()const
};
class Derived2 : public Base{
public:
void hello()const
};
class Derived3 : public Base{
public:
void hello()const
};
- replaces
-
QTCREATORBUG-10556 Follow symbol under cursor on virtual function declaration should open the List of overrides.
-
- Closed
-
For Gerrit Dashboard: QTCREATORBUG-10160 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
308183,2 | CppEditor: Find implementations for pure virtual declaration | master | qt-creator/qt-creator | Status: MERGED | +2 | 0 |