I brought up this idea in: TOPIC_ID=12600
But figured it needed a request thread, so requesting it here.
Currently Find References window has a feature I refer to as the function context display. Where it will show the name of a function in which whose body a reference was found as a prefix in the displayed line like this:
Project
File
MyFunc: reference
I think this feature is good and helpful, but often I find that the abbreviated form can get confusing when you are dealing with overloads and virtuals across multiple classes.
So I was thinking it would be nice to have an option to show the full function declaration instead of the in-lined abbreviated form.
for example:
Project
File
void MyFunc(INT InVar)
reference
or perhaps something even more contextual and show declaration and the specific caller as well:
Project
File
MyObject->MyFunc(InVar)
void MyFunc(INT InVar)
reference