summaryrefslogtreecommitdiffstats
path: root/src/extension/parameter.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2006-05-13 08:13:14 +0000
committergouldtj <gouldtj@users.sourceforge.net>2006-05-13 08:13:14 +0000
commit7c29007effe2fdb366dec8dcd2c537ab99573fb7 (patch)
tree8983294237abe7b7980e6b4c6baf134a3978e9e4 /src/extension/parameter.cpp
parentr11771@tres: ted | 2006-05-12 08:51:57 -0700 (diff)
downloadinkscape-7c29007effe2fdb366dec8dcd2c537ab99573fb7.tar.gz
inkscape-7c29007effe2fdb366dec8dcd2c537ab99573fb7.zip
r11772@tres: ted | 2006-05-12 23:15:51 -0700
Wow, that has to be the most unbelievable gcc error I've ever gotten. "undefined reference to vtable" which means that you didn't provide a implmentation for a function you prototyped in the class (and gets used, I think). Anyway, needed a mock destructor. (bzr r818)
Diffstat (limited to '')
-rw-r--r--src/extension/parameter.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/extension/parameter.cpp b/src/extension/parameter.cpp
index 3fe9cac65..b3b808830 100644
--- a/src/extension/parameter.cpp
+++ b/src/extension/parameter.cpp
@@ -931,6 +931,11 @@ ParamEnum::ParamEnum (const gchar * name, const gchar * guitext, const gchar * d
return;
}
+ParamEnum::~ParamEnum (void)
+{
+
+}
+
/** \brief Return the value as a string */
Glib::ustring *
ParamEnum::string (void)