X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=ETL%2Ftrunk%2Ftest%2Fsmach.cpp;h=3f28a06b62711fb21e79338accf98e0ee1a7ea00;hb=a66acbda1399cfa8cb2c3a177f79b98d848ec628;hp=7ef46ba54c998633ba25029d8d6a6501416a079d;hpb=36d01e1527fda602a9aed07d209eb34e6770bca8;p=synfig.git diff --git a/ETL/trunk/test/smach.cpp b/ETL/trunk/test/smach.cpp index 7ef46ba..3f28a06 100644 --- a/ETL/trunk/test/smach.cpp +++ b/ETL/trunk/test/smach.cpp @@ -63,7 +63,7 @@ class DefaultStateContext { MachineContext *context; public: - DefaultStateContext(MachineContext *context):context(context) { printf("Enterted Default State\n"); } + DefaultStateContext(MachineContext *context):context(context) { printf("Entered Default State\n"); } ~DefaultStateContext() { printf("Left Default State\n"); } Smach::event_result event1_handler(const Smach::event& x) @@ -93,7 +93,7 @@ class State1Context { MachineContext *context; public: - State1Context(MachineContext *context):context(context) { printf("Enterted State 1\n"); } + State1Context(MachineContext *context):context(context) { printf("Entered State 1\n"); } ~State1Context() { printf("Left State 1\n"); } Smach::event_result event1_handler(const Smach::event& x) @@ -121,7 +121,7 @@ class State2Context { MachineContext *context; public: - State2Context(MachineContext *context):context(context) { printf("Enterted State 2\n"); } + State2Context(MachineContext *context):context(context) { printf("Entered State 2\n"); } ~State2Context() { printf("Left State 2\n"); } Smach::event_result event1_handler(const Smach::event& x)