From b5c5a82126c487c9e0b74c507f185e71d028e51c Mon Sep 17 00:00:00 2001 From: gouldtj Date: Sat, 13 May 2006 08:13:14 +0000 Subject: [PATCH] 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. --- src/extension/parameter.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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) -- 2.30.2