diff options
| author | Patrick Storz <eduard.braun2@gmx.de> | 2019-08-11 19:14:07 +0000 |
|---|---|---|
| committer | Patrick Storz <eduard.braun2@gmx.de> | 2019-08-31 14:50:39 +0000 |
| commit | 8521b08ed46742684e6de7de085a9c4228b66881 (patch) | |
| tree | 3af08ba11eacc95844b36268ac5df71d2daf99f2 /src/extension/input.cpp | |
| parent | Templates: Improve translatability for "More info" dialog (diff) | |
| download | inkscape-8521b08ed46742684e6de7de085a9c4228b66881.tar.gz inkscape-8521b08ed46742684e6de7de085a9c4228b66881.zip | |
Add base_directory for extensions loaded from a file.
Diffstat (limited to 'src/extension/input.cpp')
| -rw-r--r-- | src/extension/input.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/extension/input.cpp b/src/extension/input.cpp index 762aee35b..ef3a9a5b5 100644 --- a/src/extension/input.cpp +++ b/src/extension/input.cpp @@ -40,7 +40,8 @@ namespace Extension { Overall, there are many levels of indentation, just to handle the levels of indentation in the XML file. */ -Input::Input (Inkscape::XML::Node * in_repr, Implementation::Implementation * in_imp) : Extension(in_repr, in_imp) +Input::Input (Inkscape::XML::Node *in_repr, Implementation::Implementation *in_imp, std::string *base_directory) + : Extension(in_repr, in_imp, base_directory) { mimetype = nullptr; extension = nullptr; |
