diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2007-11-08 07:35:44 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2007-11-08 07:35:44 +0000 |
| commit | d08af17faef48441390db53bc6e225ae6eae6b19 (patch) | |
| tree | d945b4cf97cc7acda9cede8f9324dda96a909977 /src/live_effects/lpeobject.cpp | |
| parent | attempt at fixing [ 1679218 ] open/import clicking on a 0 byte image results ... (diff) | |
| download | inkscape-d08af17faef48441390db53bc6e225ae6eae6b19.tar.gz inkscape-d08af17faef48441390db53bc6e225ae6eae6b19.zip | |
warning cleanup
(bzr r4043)
Diffstat (limited to 'src/live_effects/lpeobject.cpp')
| -rw-r--r-- | src/live_effects/lpeobject.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/live_effects/lpeobject.cpp b/src/live_effects/lpeobject.cpp index 90a49e2ff..6066f11f3 100644 --- a/src/live_effects/lpeobject.cpp +++ b/src/live_effects/lpeobject.cpp @@ -67,7 +67,7 @@ static Inkscape::XML::NodeEventVector const livepatheffect_repr_events = { /** * Callback to initialize livepatheffect vtable. */ -static void +static void livepatheffect_class_init(LivePathEffectObjectClass *klass) { SPObjectClass *sp_object_class = (SPObjectClass *) klass; @@ -99,7 +99,7 @@ livepatheffect_init(LivePathEffectObject *lpeobj) /** * Virtual build: set livepatheffect attributes from its associated XML node. */ -static void +static void livepatheffect_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr) { #ifdef LIVEPATHEFFECT_VERBOSE @@ -227,12 +227,12 @@ livepatheffect_write(SPObject *object, Inkscape::XML::Node *repr, guint flags) return repr; } -static void -livepatheffect_on_repr_attr_changed ( Inkscape::XML::Node * repr, - const gchar *key, - const gchar *oldval, - const gchar *newval, - bool is_interactive, +static void +livepatheffect_on_repr_attr_changed ( Inkscape::XML::Node * /*repr*/, + const gchar *key, + const gchar */*oldval*/, + const gchar *newval, + bool /*is_interactive*/, void * data ) { #ifdef LIVEPATHEFFECT_VERBOSE @@ -243,7 +243,7 @@ livepatheffect_on_repr_attr_changed ( Inkscape::XML::Node * repr, return; LivePathEffectObject *lpeobj = (LivePathEffectObject*) data; - if (!lpeobj->lpe) + if (!lpeobj->lpe) return; lpeobj->lpe->setParameter(key, newval); |
