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/output.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/output.cpp')
| -rw-r--r-- | src/extension/output.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/extension/output.cpp b/src/extension/output.cpp index 0977b9576..07c1120e7 100644 --- a/src/extension/output.cpp +++ b/src/extension/output.cpp @@ -41,7 +41,8 @@ namespace Extension { Overall, there are many levels of indentation, just to handle the levels of indentation in the XML file. */ -Output::Output (Inkscape::XML::Node * in_repr, Implementation::Implementation * in_imp) : Extension(in_repr, in_imp) +Output::Output (Inkscape::XML::Node *in_repr, Implementation::Implementation *in_imp, std::string *base_directory) + : Extension(in_repr, in_imp, base_directory) { mimetype = nullptr; extension = nullptr; |
