forked from qt-creator/qt-creator
Core: Apply 'static' pattern to Core::FindPlugin
Also, rename it to Core::Find. It hasn't been a plugin for a while. Change-Id: I845885ccf18bdc1440258d523b033758d5583881 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
@@ -405,7 +405,7 @@ bool TextBrowserHelpWidget::eventFilter(QObject *obj, QEvent *event)
|
||||
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
|
||||
if (keyEvent->key() == Qt::Key_Slash) {
|
||||
keyEvent->accept();
|
||||
Core::FindPlugin::instance()->openFindToolBar(Core::FindPlugin::FindForwardDirection);
|
||||
Core::Find::openFindToolBar(Core::Find::FindForwardDirection);
|
||||
return true;
|
||||
}
|
||||
} else if (event->type() == QEvent::ToolTip) {
|
||||
|
||||
Reference in New Issue
Block a user