From 749a7fe11607075e0013ba948c9d89740dcc1f5f Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Fri, 23 Aug 2024 20:38:49 +0200 Subject: [PATCH] ActionType is now a member of class Statemachine --- generator/src/generator/Transformations.egl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/src/generator/Transformations.egl b/generator/src/generator/Transformations.egl index b519988..763d263 100644 --- a/generator/src/generator/Transformations.egl +++ b/generator/src/generator/Transformations.egl @@ -1,7 +1,7 @@ [% operation Tuple transformStatemachine() { self.transition_type = "Transition"; - self.transition_action_type = "Transition::ActionType"; + self.transition_action_type = "ActionType"; self.state_type = "State"; self.history_state_type = "HistoryState"; self.event_type = "Event";