API improvements: open/close instead of start/close
This commit is contained in:
parent
e858b413a3
commit
cc6fa14c9b
2 changed files with 2 additions and 2 deletions
|
@ -955,7 +955,7 @@ void TabBox::modalActionsSwitch(bool enabled)
|
|||
action->setEnabled(enabled);
|
||||
}
|
||||
|
||||
void TabBox::start(bool modal)
|
||||
void TabBox::open(bool modal)
|
||||
{
|
||||
if (isDisplayed()) {
|
||||
return;
|
||||
|
|
|
@ -174,7 +174,7 @@ public slots:
|
|||
* @param modal Whether the TabBox should grab keyboard and mouse, that is go into modal
|
||||
* mode or whether the TabBox is controlled externally (e.g. through an effect).
|
||||
**/
|
||||
Q_SCRIPTABLE void start(bool modal = true);
|
||||
Q_SCRIPTABLE void open(bool modal = true);
|
||||
Q_SCRIPTABLE void close(bool abort = false);
|
||||
void slotWalkThroughDesktops();
|
||||
void slotWalkBackThroughDesktops();
|
||||
|
|
Loading…
Reference in a new issue