summaryrefslogtreecommitdiffstats
path: root/src/extension/implementation/implementation.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2006-05-02 05:28:49 +0000
committergouldtj <gouldtj@users.sourceforge.net>2006-05-02 05:28:49 +0000
commitea07a3251ec366956e9a162b44940718be1141d0 (patch)
treecd83cdfac8d6fa5b3a34bb5ffa1fdfbd45d01262 /src/extension/implementation/implementation.cpp
parentr11518@tres: ted | 2006-04-28 22:21:01 -0700 (diff)
downloadinkscape-ea07a3251ec366956e9a162b44940718be1141d0.tar.gz
inkscape-ea07a3251ec366956e9a162b44940718be1141d0.zip
r11569@tres: ted | 2006-04-29 08:55:02 -0700
Pushing the document and node deeper into the code. This way parameters can be placed and edited on those. Mostly, this commit involves getting them into the autogui. (bzr r689)
Diffstat (limited to 'src/extension/implementation/implementation.cpp')
-rw-r--r--src/extension/implementation/implementation.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extension/implementation/implementation.cpp b/src/extension/implementation/implementation.cpp
index fe7c03463..a621dc838 100644
--- a/src/extension/implementation/implementation.cpp
+++ b/src/extension/implementation/implementation.cpp
@@ -46,7 +46,7 @@ Implementation::check(Inkscape::Extension::Extension *module) {
Gtk::Widget *
Implementation::prefs_input(Inkscape::Extension::Input *module, gchar const *filename) {
- return module->autogui();
+ return module->autogui(NULL, NULL);
} /* Implementation::prefs_input */
SPDocument *
@@ -57,7 +57,7 @@ Implementation::open(Inkscape::Extension::Input *module, gchar const *filename)
Gtk::Widget *
Implementation::prefs_output(Inkscape::Extension::Output *module) {
- return module->autogui();
+ return module->autogui(NULL, NULL);
} /* Implementation::prefs_output */
void
@@ -68,7 +68,7 @@ Implementation::save(Inkscape::Extension::Output *module, SPDocument *doc, gchar
Gtk::Widget *
Implementation::prefs_effect(Inkscape::Extension::Effect *module, Inkscape::UI::View::View *view) {
- return module->autogui();
+ return module->autogui(NULL, NULL);
} /* Implementation::prefs_effect */
void