summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 97a2086)
raw | patch | inline | side by side (parent: 97a2086)
author | cilix42 <cilix42@users.sourceforge.net> | |
Tue, 10 Jun 2008 14:09:24 +0000 (14:09 +0000) | ||
committer | cilix42 <cilix42@users.sourceforge.net> | |
Tue, 10 Jun 2008 14:09:24 +0000 (14:09 +0000) |
src/live_effects/effect.cpp | patch | blob | history |
index de41d6a59b6525e045051562169739c2ae6722d5..c46a9dd2397dc864fc46f382a596866e4fcaa63a 100644 (file)
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");
}
}
}