From: gouldtj Date: Sat, 13 May 2006 08:13:14 +0000 (+0000) Subject: r11772@tres: ted | 2006-05-12 23:15:51 -0700 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b5c5a82126c487c9e0b74c507f185e71d028e51c;p=inkscape.git 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. --- 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)