diff --git a/projects/linux/ee.creator.user b/projects/linux/ee.creator.user index b0b15ebb4..c6c988d71 100644 --- a/projects/linux/ee.creator.user +++ b/projects/linux/ee.creator.user @@ -1,6 +1,6 @@ - + EnvironmentId @@ -1526,7 +1526,7 @@ Run %{buildDir}../../../bin/eepp-UIEditor-debug eepp-UIEditor-debug ProjectExplorer.CustomExecutableRunConfiguration - assets/layouts/test.xml assets/layouts/test.css + -x assets/layouts/test.xml -c assets/layouts/test.css -u 3768 true false diff --git a/src/eepp/scene/action.cpp b/src/eepp/scene/action.cpp index e333a9ac9..89c420465 100644 --- a/src/eepp/scene/action.cpp +++ b/src/eepp/scene/action.cpp @@ -62,7 +62,7 @@ Action * Action::on(const Action::ActionType& actionType, const Action::ActionCa void Action::removeEventListener( const Uint32& callbackId ) { for ( auto it = mCallbacks.begin(); it != mCallbacks.end(); ++it ) { - std::map event = it->second; + std::map& event = it->second; if ( event.erase( callbackId ) ) break;