Remove deprecated Window.raiseMainWindow API function

This commit is contained in:
David Rowe 2018-07-12 14:04:08 +12:00
parent b036c7f437
commit 46c9853152
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.