summaryrefslogtreecommitdiffstats
path: root/src/extension/parameter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension/parameter.cpp')
-rw-r--r--src/extension/parameter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/extension/parameter.cpp b/src/extension/parameter.cpp
index a821a626d..70f66c416 100644
--- a/src/extension/parameter.cpp
+++ b/src/extension/parameter.cpp
@@ -32,6 +32,7 @@
#include "parameter.h"
#include "paramnotebook.h"
+#include "paramenum.h"
/** \brief The root directory in the preferences database for extension
related parameters. */
@@ -312,7 +313,7 @@ Parameter::make (Inkscape::XML::Node * in_repr, Inkscape::Extension::Extension *
} else if (!strcmp(type, "description")) {
param = new ParamDescription(name, guitext, desc, scope, in_ext, in_repr);
} else if (!strcmp(type, "enum")) {
- param = new ParamEnum(name, guitext, desc, scope, in_ext, in_repr);
+ param = new ParamComboBox(name, guitext, desc, scope, in_ext, in_repr);
} else if (!strcmp(type, "notebook")) {
param = new ParamNotebook(name, guitext, desc, scope, in_ext, in_repr);
}