mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:44:21 +02:00
rename signal in AbstractControllerScriptingInterface from cancel to back
This commit is contained in:
parent
8e6b6d5294
commit
bb652c0784
2 changed files with 4 additions and 4 deletions
|
@ -32,9 +32,9 @@ void ControllerScriptingInterface::handleMetaEvent(HFMetaEvent* event) {
|
|||
} else if (event->type() == HFActionEvent::endType()) {
|
||||
emit actionEndEvent(static_cast<HFActionEvent&>(*event));
|
||||
} else if (event->type() == HFBackEvent::startType()) {
|
||||
emit cancelStartEvent();
|
||||
emit backStartEvent();
|
||||
} else if (event->type() == HFBackEvent::endType()) {
|
||||
emit cancelEndEvent();
|
||||
emit backEndEvent();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -97,8 +97,8 @@ signals:
|
|||
void actionStartEvent(const HFActionEvent& event);
|
||||
void actionEndEvent(const HFActionEvent& event);
|
||||
|
||||
void cancelStartEvent();
|
||||
void cancelEndEvent();
|
||||
void backStartEvent();
|
||||
void backEndEvent();
|
||||
|
||||
void mouseMoveEvent(const MouseEvent& event, unsigned int deviceID = 0);
|
||||
void mousePressEvent(const MouseEvent& event, unsigned int deviceID = 0);
|
||||
|
|
Loading…
Reference in a new issue