Author Topic: inserting class method  (Read 2256 times)

Offline qtreez

  • Multiple posting newcomer
  • *
  • Posts: 20
inserting class method
« on: February 18, 2015, 01:59:41 pm »
Hellow.
I know that C::B has feature described here (http://forums.codeblocks.org/index.php?topic=16367.0), but sometimes it is uncomfortable.
Especially when I work with wxWidgets.

I must always deselecting following methods:
Code
wxEventHashTable MyFrame::sm_eventHashTable(MyFrame::sm_eventTable)

and what is more weird wxFrame c'tor, if it is implemented in such a way
Code
MyFrame::MyFrame() : wxFrame(NULL, wxID_ANY, "title...")

I checked in this moment that, this also applies to ordinary c'tor (in this case without wxFrame c'tor).

I think it was nice to have shourtcout like "Go To Implementation", that focus at suitable class's implementation method according to focus or creating that method if it does'nt exist.

Regards.