Merge pull request #13594 from ctrlaltdavid/21677-a

Remove deprecated Window.raiseMainWindow API function
This commit is contained in:
Seth Alves 2018-07-12 19:48:33 -07:00 committed by GitHub
commit 5085112722
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 11 deletions

View file

@ -86,10 +86,6 @@ void WindowScriptingInterface::raise() {
});
}
void WindowScriptingInterface::raiseMainWindow() {
raise();
}
/// Display an alert box
/// \param const QString& message message to display
/// \return QScriptValue::UndefinedValue

View file

@ -80,13 +80,6 @@ public slots:
*/
void raise();
/**jsdoc
* Raise the Interface window if it is minimized. If raised, the window gains focus.
* @function Window.raiseMainWindow
* @deprecated Use {@link Window.raise|raise} instead.
*/
void raiseMainWindow();
/**jsdoc
* Display a dialog with the specified message and an "OK" button. The dialog is non-modal; the script continues without
* waiting for a user response.