Consistency in application event handler naming

This commit is contained in:
Nav
2021-04-25 16:03:07 +01:00
parent fa2a3f67db
commit 9d2b5b2f0a
2 changed files with 6 additions and 6 deletions

View File

@@ -228,7 +228,7 @@ namespace Bloom
*
* @param event
*/
void handleTargetControllerStateChangedEvent(EventPointer<Events::TargetControllerStateChanged> event);
void onTargetControllerStateChanged(EventPointer<Events::TargetControllerStateChanged> event);
/**
* Same goes for the DebugServer - it should never shutdown unless a shutdown request was issued. If it does,
@@ -241,7 +241,7 @@ namespace Bloom
/**
* Triggers a shutdown of Bloom and all of its components.
*/
void handleShutdownApplicationEvent(EventPointer<Events::ShutdownApplication>);
void onShutdownApplicationRequest(EventPointer<Events::ShutdownApplication>);
/**
* Returns the path to the directory in which the Bloom binary resides.