Typo: 'consistant' -> 'consistent'.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 30 Oct 2007 10:55:11 +0000 (10:55 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 30 Oct 2007 10:55:11 +0000 (10:55 +0000)
git-svn-id: http://svn.voria.com/code@1013 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/blur.cpp
synfig-studio/trunk/src/gtkmm/cellrenderer_value.cpp
synfig-studio/trunk/src/gtkmm/cellrenderer_value.h
synfig-studio/trunk/src/gtkmm/layertree.cpp

index 85ce275..c2fb90f 100644 (file)
@@ -714,7 +714,7 @@ bool Blur::operator ()(const Surface &surface,
                        }*/
 
             /* Squaring the pw and ph values
-                          is necessary to insure consistant
+                          is necessary to insure consistent
                           results when rendered to different
                           resolutions.
                           Unfortunately, this automatically
@@ -1088,7 +1088,7 @@ bool Blur::operator ()(const surface<float> &surface,
                        }*/
 
             /* Squaring the pw and ph values
-                          is necessary to insure consistant
+                          is necessary to insure consistent
                           results when rendered to different
                           resolutions.
                           Unfortunately, this automatically
index 6f22664..9c4a372 100644 (file)
@@ -276,7 +276,7 @@ CellRenderer_ValueBase::CellRenderer_ValueBase():
        property_attributes()=attr_list;
 
        property_foreground()=Glib::ustring("#7f7f7f");
-       property_inconsistant()=false;
+       property_inconsistent()=false;
 }
 
 CellRenderer_ValueBase::~CellRenderer_ValueBase()
index 72cc8c9..4aba7b9 100644 (file)
@@ -97,7 +97,7 @@ public:
        Glib::PropertyProxy<synfig::ValueBase> property_value() { return property_value_.get_proxy();}
        Glib::PropertyProxy<etl::handle<synfig::Canvas> > property_canvas() { return property_canvas_.get_proxy();}
        Glib::PropertyProxy<synfig::ParamDesc> property_param_desc() { return property_param_desc_.get_proxy(); }
-       Glib::PropertyProxy<bool> property_inconsistant() { return property_foreground_set(); }
+       Glib::PropertyProxy<bool> property_inconsistent() { return property_foreground_set(); }
 
        etl::handle<synfig::Canvas> get_canvas()const { return property_canvas_; }
        synfig::ParamDesc get_param_desc()const { return property_param_desc_; }
index 24245d6..70fd8be 100644 (file)
@@ -344,7 +344,7 @@ LayerTree::create_param_tree()
                cellrenderer_value->signal_edited().connect(sigc::mem_fun(*this, &studio::LayerTree::on_edited_value));
                cellrenderer_value->property_value()=synfig::ValueBase();
                column->add_attribute(cellrenderer_value->property_param_desc(), param_model.param_desc);
-               column->add_attribute(cellrenderer_value->property_inconsistant(),param_model.is_inconsistent);
+               column->add_attribute(cellrenderer_value->property_inconsistent(),param_model.is_inconsistent);
                //cellrenderer_value->property_canvas()=canvas_interface->get_canvas(); // Is this line necessary?
                cellrenderer_value->property_attributes()=attr_list;