summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2a221e1)
raw | patch | inline | side by side (parent: 2a221e1)
author | gouldtj <gouldtj@users.sourceforge.net> | |
Sat, 13 May 2006 08:13:14 +0000 (08:13 +0000) | ||
committer | gouldtj <gouldtj@users.sourceforge.net> | |
Sat, 13 May 2006 08:13:14 +0000 (08:13 +0000) |
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.
"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 | patch | blob | history |
index 3fe9cac65e0895f35fafafe552116d8c97bc5721..b3b808830868828095564b4878629883b0fb56e6 100644 (file)
@@ -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)