diff options
| author | johnce <johnce@users.sourceforge.net> | 2009-08-05 06:05:12 +0000 |
|---|---|---|
| committer | johnce <johnce@users.sourceforge.net> | 2009-08-05 06:05:12 +0000 |
| commit | 56cbd9ce3b1f5116c22250d74ead66a0feb3ffa5 (patch) | |
| tree | 63e0a6f00e72f1a5b7fc4fe38dfdfc966e8d03a4 /src/extension/extension.h | |
| parent | SPDocument->Document (diff) | |
| download | inkscape-56cbd9ce3b1f5116c22250d74ead66a0feb3ffa5.tar.gz inkscape-56cbd9ce3b1f5116c22250d74ead66a0feb3ffa5.zip | |
SPDocument->Document
(bzr r8406)
Diffstat (limited to 'src/extension/extension.h')
| -rw-r--r-- | src/extension/extension.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/extension/extension.h b/src/extension/extension.h index 48ca86cf7..8dcd1b393 100644 --- a/src/extension/extension.h +++ b/src/extension/extension.h @@ -72,7 +72,7 @@ #define INKSCAPE_EXTENSION_NS_NC "extension" #define INKSCAPE_EXTENSION_NS "extension:" -struct SPDocument; +struct Document; namespace Inkscape { namespace Extension { @@ -173,42 +173,42 @@ private: #endif public: bool get_param_bool (const gchar * name, - const SPDocument * doc = NULL, + const Document * doc = NULL, const Inkscape::XML::Node * node = NULL); int get_param_int (const gchar * name, - const SPDocument * doc = NULL, + const Document * doc = NULL, const Inkscape::XML::Node * node = NULL); float get_param_float (const gchar * name, - const SPDocument * doc = NULL, + const Document * doc = NULL, const Inkscape::XML::Node * node = NULL); const gchar * get_param_string (const gchar * name, - const SPDocument * doc = NULL, + const Document * doc = NULL, const Inkscape::XML::Node * node = NULL); guint32 get_param_color (const gchar * name, - const SPDocument * doc = NULL, + const Document * doc = NULL, const Inkscape::XML::Node * node = NULL); const gchar * get_param_enum (const gchar * name, - const SPDocument * doc = NULL, + const Document * doc = NULL, const Inkscape::XML::Node * node = NULL); bool set_param_bool (const gchar * name, bool value, - SPDocument * doc = NULL, + Document * doc = NULL, Inkscape::XML::Node * node = NULL); int set_param_int (const gchar * name, int value, - SPDocument * doc = NULL, + Document * doc = NULL, Inkscape::XML::Node * node = NULL); float set_param_float (const gchar * name, float value, - SPDocument * doc = NULL, + Document * doc = NULL, Inkscape::XML::Node * node = NULL); const gchar * set_param_string (const gchar * name, const gchar * value, - SPDocument * doc = NULL, + Document * doc = NULL, Inkscape::XML::Node * node = NULL); guint32 set_param_color (const gchar * name, guint32 color, - SPDocument * doc = NULL, + Document * doc = NULL, Inkscape::XML::Node * node = NULL); /* Error file handling */ @@ -217,7 +217,7 @@ public: static void error_file_close (void); public: - Gtk::Widget * autogui (SPDocument * doc, Inkscape::XML::Node * node, sigc::signal<void> * changeSignal = NULL); + Gtk::Widget * autogui (Document * doc, Inkscape::XML::Node * node, sigc::signal<void> * changeSignal = NULL); void paramListString (std::list <std::string> & retlist); /* Extension editor dialog stuff */ |
