----------------------- ResourceBrowser::Init Tool initialization implementation
| 27 | // Tool initialization implementation |
| 28 | // |
| 29 | void ResourceBrowser::Init(EditorBase* const editor, Gtk::Frame* parent) |
| 30 | { |
| 31 | m_View.Init(std::vector<rttr::type>()); |
| 32 | |
| 33 | parent->add(*(m_View.GetAttachment())); |
| 34 | m_View.GetAttachment()->show_all(); |
| 35 | } |
| 36 | |
| 37 | //------------------------------------ |
| 38 | // ResourceBrowser::GetToolbarContent |
nothing calls this directly
no test coverage detected