Rename tests_sendEvent() to sendEvent()

Non-test code will also need it
This commit is contained in:
Sergio Martins
2022-04-19 19:32:56 +01:00
parent 28b210586c
commit a6cbfbf065
4 changed files with 10 additions and 7 deletions

View File

@@ -147,7 +147,7 @@ bool Platform_qt::tests_waitForDeleted(View *view, int timeout) const
return wasDeleted;
}
void Platform_qt::tests_sendEvent(View *view, QEvent *ev) const
void Platform_qt::sendEvent(View *view, QEvent *ev) const
{
qApp->sendEvent(view->asQObject(), ev);
}