X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=ETL%2Ftrunk%2Ftest%2Fsmach.cpp;h=3f28a06b62711fb21e79338accf98e0ee1a7ea00;hb=dd3cfb8a9541bcd485836b75bc47ef032d0e65dc;hp=007af1c87fd960846937edbc6f456b111cc1afa0;hpb=cee5940bae97612105db8b7e1ffcf513f9d9150c;p=synfig.git diff --git a/ETL/trunk/test/smach.cpp b/ETL/trunk/test/smach.cpp index 007af1c..3f28a06 100644 --- a/ETL/trunk/test/smach.cpp +++ b/ETL/trunk/test/smach.cpp @@ -1,7 +1,7 @@ /*! ======================================================================== ** Extended Template and Library Test Suite ** Angle Class Test -** $Id: smach.cpp,v 1.1.1.1 2005/01/04 01:31:48 darco Exp $ +** $Id$ ** ** Copyright (c) 2002 Robert B. Quattlebaum Jr. ** @@ -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)