diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-06-10 14:09:24 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-06-10 14:09:24 +0000 |
| commit | 574bf0e49145aa9519b80f4ac6af3b0ecde9aed1 (patch) | |
| tree | 274cada6a7a541dbbc2a1cde11c4e00bd9aa28d6 /src/live_effects/effect.cpp | |
| parent | Write all effect parameters to SVG when a LPE knotholder handle is ungrabbed (diff) | |
| download | inkscape-574bf0e49145aa9519b80f4ac6af3b0ecde9aed1.tar.gz inkscape-574bf0e49145aa9519b80f4ac6af3b0ecde9aed1.zip | |
Remove debugging messages
(bzr r5871)
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index de41d6a59..c46a9dd23 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -217,10 +217,8 @@ Effect::doBeforeEffect (SPLPEItem */*lpeitem*/) void Effect::writeParamsToSVG() { - g_print ("Parameters get written to SVG\n"); std::vector<Inkscape::LivePathEffect::Parameter *>::iterator p; for (p = param_vector.begin(); p != param_vector.end(); ++p) { - g_print ("writing parameter %s to SVG\n", (*p)->param_key.c_str()); (*p)->write_to_SVG(); } } @@ -358,12 +356,9 @@ Effect::addPointParamHandles(KnotHolder *knotholder, SPDesktop *desktop, SPItem using namespace std; for (std::vector<Parameter *>::iterator p = param_vector.begin(); p != param_vector.end(); ++p) { if ((*p)->paramType() == Inkscape::LivePathEffect::POINT_PARAM) { - g_print ("Parameter is of type PointParam\n"); KnotHolderEntity *e = dynamic_cast<KnotHolderEntity *>(*p); e->create(desktop, item, knotholder); knotholder->add(e); - } else { - g_print ("Parameter is *not* of type PointParam\n"); } } } |
