Typo: 'enterted' -> 'entered'.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 30 Oct 2007 12:46:59 +0000 (12:46 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 30 Oct 2007 12:46:59 +0000 (12:46 +0000)
git-svn-id: http://svn.voria.com/code@1021 1f10aa63-cdf2-0310-b900-c93c546f37ac

ETL/trunk/test/smach.cpp
synfig-studio/trunk/src/gtkmm/state_eyedrop.cpp
synfig-studio/trunk/src/gtkmm/state_fill.cpp
synfig-studio/trunk/src/gtkmm/state_normal.cpp

index 7ef46ba..3f28a06 100644 (file)
@@ -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)
index 711e166..bafaab0 100644 (file)
@@ -95,7 +95,7 @@ StateEyedrop_Context::StateEyedrop_Context(CanvasView *canvas_view):
        canvas_view(canvas_view),
        is_working(*canvas_view)
 {
-       synfig::info("Enterted Eyedrop State");
+       synfig::info("Entered Eyedrop State");
        canvas_view->work_area->set_cursor(Gdk::Cursor(Gdk::CROSSHAIR));
 
        App::toolbox->refresh();
index 28bfa40..19c674b 100644 (file)
@@ -102,7 +102,7 @@ StateFill_Context::StateFill_Context(CanvasView *canvas_view):
        canvas_view(canvas_view),
        is_working(*canvas_view)
 {
-       synfig::info("Enterted Fill State");
+       synfig::info("Entered Fill State");
        canvas_view->work_area->set_cursor(Gdk::CROSSHAIR);
 
        App::toolbox->refresh();
index dc898f4..467cb5d 100644 (file)
@@ -119,7 +119,7 @@ StateNormal::~StateNormal()
 StateNormal_Context::StateNormal_Context(CanvasView *canvas_view):
        canvas_view(canvas_view)
 {
-       synfig::info("Enterted Normal State");
+       synfig::info("Entered Normal State");
 }
 
 StateNormal_Context::~StateNormal_Context()