Code

Fix wrong descriptions
authorcilix42 <cilix42@users.sourceforge.net>
Wed, 18 Jun 2008 02:13:00 +0000 (02:13 +0000)
committercilix42 <cilix42@users.sourceforge.net>
Wed, 18 Jun 2008 02:13:00 +0000 (02:13 +0000)
src/live_effects/lpe-tangent_to_curve.cpp

index 9e63ef4a4c4e9e8dc4a697e727d4238d5c00e187..83f73cf8bb092284ce7c71a7bdb03da0eb2e4211 100644 (file)
@@ -72,9 +72,9 @@ LPETangentToCurve::LPETangentToCurve(LivePathEffectObject *lpeobject) :
     registerParameter( dynamic_cast<Parameter *>(&length_left) );
     registerParameter( dynamic_cast<Parameter *>(&length_right) );
 
-    registerKnotHolderHandle(new TtC::KnotHolderEntityAttachPt(), _("Adjust the \"left\" end of the tangent"));
-    registerKnotHolderHandle(new TtC::KnotHolderEntityLeftEnd(), _("Adjust the \"right\" end of the tangent"));
-    registerKnotHolderHandle(new TtC::KnotHolderEntityRightEnd(), _("Adjust the point of attachment of the tangent"));
+    registerKnotHolderHandle(new TtC::KnotHolderEntityAttachPt(), _("Adjust the point of attachment of the tangent"));
+    registerKnotHolderHandle(new TtC::KnotHolderEntityLeftEnd(), _("Adjust the \"left\" end of the tangent"));
+    registerKnotHolderHandle(new TtC::KnotHolderEntityRightEnd(), _("Adjust the \"right\" end of the tangent"));
 }
 
 LPETangentToCurve::~LPETangentToCurve()