Re: [Qt-creator] Find references of virtual functions?

2020-09-14 Thread Christian Kandeler
On Fri, 11 Sep 2020 20:59:51 + "Murphy, Sean" wrote: > Say I've got a class inheritance design like so: > > class Abstract > { > virtual void foo() = 0; > } > > class Base : public Abstract > { > virtual void foo(); > } > > class Child : public Base > { > virtual void foo()

Re: [Qt-creator] Find references of virtual functions?

2020-09-11 Thread Konstantin Tokarev
12.09.2020, 01:30, "Giuseppe D'Angelo via Qt-creator" : > Il 11/09/20 22:59, Murphy, Sean ha scritto: >>  Is there any way in Qt Creator to only show me the places where >> Grandchild::foo() is called? Right now, I'm finding that even if I go to >> grandchild.cpp, put my cursor on void

Re: [Qt-creator] Find references of virtual functions?

2020-09-11 Thread Giuseppe D'Angelo via Qt-creator
Il 11/09/20 22:59, Murphy, Sean ha scritto: Is there any way in Qt Creator to only show me the places where Grandchild::foo() is called? Right now, I'm finding that even if I go to grandchild.cpp, put my cursor on void Grandchild::foo(), and then select "Find Reference to Symbol Under

[Qt-creator] Find references of virtual functions?

2020-09-11 Thread Murphy, Sean
Say I've got a class inheritance design like so: class Abstract { virtual void foo() = 0; } class Base : public Abstract { virtual void foo(); } class Child : public Base { virtual void foo() override; } class Grandchild : public Child { virtual void foo() override; } Is there any way