summaryrefslogtreecommitdiffstats
path: root/src/libnr/nr-object.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-05-04 05:14:00 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-05-04 05:14:00 +0000
commit7b781b0f4b6d3c29a2462a53b69789615cc104f9 (patch)
treeaa9f9821145fd79ffd4b004ca8189c8eb763d390 /src/libnr/nr-object.cpp
parentInitial cut of touch-delete mode (diff)
downloadinkscape-7b781b0f4b6d3c29a2462a53b69789615cc104f9.tar.gz
inkscape-7b781b0f4b6d3c29a2462a53b69789615cc104f9.zip
warning cleanup and fixed string free issue
(bzr r5594)
Diffstat (limited to 'src/libnr/nr-object.cpp')
-rw-r--r--src/libnr/nr-object.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libnr/nr-object.cpp b/src/libnr/nr-object.cpp
index 12f57bd81..7ecdd75c3 100644
--- a/src/libnr/nr-object.cpp
+++ b/src/libnr/nr-object.cpp
@@ -137,11 +137,11 @@ static void nr_object_class_init(NRObjectClass *c)
c->cpp_ctor = NRObject::invoke_ctor<NRObject>;
}
-static void nr_object_init (NRObject *object)
+static void nr_object_init (NRObject */*object*/)
{
}
-static void nr_object_finalize (NRObject *object)
+static void nr_object_finalize (NRObject */*object*/)
{
}
@@ -237,7 +237,7 @@ static void nr_active_object_class_init(NRActiveObjectClass *c)
object_class->cpp_ctor = NRObject::invoke_ctor<NRActiveObject>;
}
-static void nr_active_object_init(NRActiveObject *object)
+static void nr_active_object_init(NRActiveObject */*object*/)
{
}