diff options
| author | Ted Gould <ted@gould.cx> | 2006-05-13 08:13:14 +0000 |
|---|---|---|
| committer | gouldtj <gouldtj@users.sourceforge.net> | 2006-05-13 08:13:14 +0000 |
| commit | 7c29007effe2fdb366dec8dcd2c537ab99573fb7 (patch) | |
| tree | 8983294237abe7b7980e6b4c6baf134a3978e9e4 | |
| parent | r11771@tres: ted | 2006-05-12 08:51:57 -0700 (diff) | |
| download | inkscape-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)
| -rw-r--r-- | src/extension/parameter.cpp | 5 |
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) |
