summaryrefslogtreecommitdiffstats
path: root/src/live_effects/effect.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-05-01 06:00:04 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-05-01 06:00:04 +0000
commit5560f5845f9ec804e1c540eb9c5dc15ca515e9af (patch)
tree211203aa878f5aefd3704ff338c50ace3e15086b /src/live_effects/effect.cpp
parentAdded grid_polar.inx and grid_polar.py, to integrate new extension - LP #224522. (diff)
downloadinkscape-5560f5845f9ec804e1c540eb9c5dc15ca515e9af.tar.gz
inkscape-5560f5845f9ec804e1c540eb9c5dc15ca515e9af.zip
Warning and whitespace cleanup
(bzr r5564)
Diffstat (limited to 'src/live_effects/effect.cpp')
-rw-r--r--src/live_effects/effect.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp
index 066b91797..40813041c 100644
--- a/src/live_effects/effect.cpp
+++ b/src/live_effects/effect.cpp
@@ -147,7 +147,7 @@ Effect::getName()
}
void
-Effect::doBeforeEffect (SPLPEItem *lpeitem)
+Effect::doBeforeEffect (SPLPEItem */*lpeitem*/)
{
//Do nothing for simple effects
}
@@ -246,7 +246,7 @@ Effect::readallParameters(Inkscape::XML::Node * repr)
const gchar * value = repr->attribute(key);
if (value) {
bool accepted = param->param_readSVGValue(value);
- if (!accepted) {
+ if (!accepted) {
g_warning("Effect::readallParameters - '%s' not accepted for %s", value, key);
}
} else {
@@ -266,7 +266,7 @@ Effect::setParameter(const gchar * key, const gchar * new_value)
if (param) {
if (new_value) {
bool accepted = param->param_readSVGValue(new_value);
- if (!accepted) {
+ if (!accepted) {
g_warning("Effect::setParameter - '%s' not accepted for %s", new_value, key);
}
} else {