diff options
Diffstat (limited to 'src/extension/script/InkscapePython.h')
| -rw-r--r-- | src/extension/script/InkscapePython.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/extension/script/InkscapePython.h b/src/extension/script/InkscapePython.h index 76739c152..a97c945c8 100644 --- a/src/extension/script/InkscapePython.h +++ b/src/extension/script/InkscapePython.h @@ -37,7 +37,6 @@ public: */ InkscapePython() { - initialized = false; } @@ -58,17 +57,20 @@ public: Glib::ustring &error); + virtual void writeStdOut(const Glib::ustring &txt) + { + stdOut.append(txt); + } + virtual void writeStdErr(const Glib::ustring &txt) + { + stdErr.append(txt); + } private: - /** - * First-time call to set things up - */ - bool initialize(); - - bool initialized; - + Glib::ustring stdOut; + Glib::ustring stdErr; }; |
