More renames I missed in SVN r2296.
[synfig.git] / synfig-studio / trunk / src / gtkmm / state_fill.cpp
index b09951a..e337156 100644 (file)
@@ -40,6 +40,8 @@
 #include "canvasview.h"
 #include <synfigapp/main.h>
 
+#include "general.h"
+
 #endif
 
 /* === U S I N G =========================================================== */
@@ -102,7 +104,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();
@@ -116,7 +118,7 @@ StateFill_Context::~StateFill_Context()
 }
 
 Smach::event_result
-StateFill_Context::event_stop_handler(const Smach::event& x)
+StateFill_Context::event_stop_handler(const Smach::event& /*x*/)
 {
        synfig::info("STATE FILL: Received Stop Event");
        throw Smach::egress_exception();
@@ -125,7 +127,7 @@ StateFill_Context::event_stop_handler(const Smach::event& x)
 }
 
 Smach::event_result
-StateFill_Context::event_refresh_handler(const Smach::event& x)
+StateFill_Context::event_refresh_handler(const Smach::event& /*x*/)
 {
        synfig::info("STATE FILL: Received Refresh Event");
        canvas_view->work_area->queue_render_preview();
@@ -145,7 +147,7 @@ StateFill_Context::event_workarea_layer_clicked_handler(const Smach::event& x)
        }
 
 
-       //synfigapp::Action::Handle action(synfigapp::Action::create("value_desc_set"));
+       //synfigapp::Action::Handle action(synfigapp::Action::create("ValueDescSet"));
        synfigapp::ValueDesc value_desc(event.layer,"color");
 
        if(!get_canvas_interface()->change_value(value_desc,ValueBase(synfigapp::Main::get_foreground_color())))