From: cilix42 Date: Tue, 10 Jun 2008 14:09:24 +0000 (+0000) Subject: Remove debugging messages X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=fe945d14c20faa62b45ab1f70528fb2e3ad30c91;p=inkscape.git Remove debugging messages --- 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::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::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(*p); e->create(desktop, item, knotholder); knotholder->add(e); - } else { - g_print ("Parameter is *not* of type PointParam\n"); } } }