| 89 | ///////////////////////////////////////////////////////////// |
| 90 | |
| 91 | JSPluginDocSidebar::JSPluginDocSidebar(WizExplorerApp& app, JSPluginModule* module, QWidget *parent) |
| 92 | : JSPluginWebsiteView(app, module, parent) |
| 93 | , m_sidebarWidth(module->spec()->width()) |
| 94 | { |
| 95 | module->parentPlugin()->initStrings(); |
| 96 | m_web->load(QUrl::fromLocalFile(m_module->spec()->htmlFileName())); |
| 97 | } |
| 98 | |
| 99 | QSize JSPluginDocSidebar::sizeHint() const |
| 100 | { |
nothing calls this directly
no test coverage detected