diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2008-02-28 07:19:26 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2008-02-28 07:19:26 +0000 |
| commit | 832de37d5d8f77cc50e4976ba41ee27f3a87ba29 (patch) | |
| tree | 8f741a387f72676d6421b6e5f3003f9ce9285efd /src/extension/parameter.h | |
| parent | a bit more boilerplate code for SVGFonts (diff) | |
| download | inkscape-832de37d5d8f77cc50e4976ba41ee27f3a87ba29.tar.gz inkscape-832de37d5d8f77cc50e4976ba41ee27f3a87ba29.zip | |
Warning cleanup
(bzr r4891)
Diffstat (limited to 'src/extension/parameter.h')
| -rw-r--r-- | src/extension/parameter.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/extension/parameter.h b/src/extension/parameter.h index 308b0b88e..0d9668a55 100644 --- a/src/extension/parameter.h +++ b/src/extension/parameter.h @@ -1,5 +1,5 @@ -#ifndef __INK_EXTENSION_PARAM_H__ -#define __INK_EXTENSION_PARAM_H__ +#ifndef INK_EXTENSION_PARAM_H_SEEN +#define INK_EXTENSION_PARAM_H_SEEN /** \file * Parameters for extensions. @@ -89,28 +89,28 @@ public: const Inkscape::XML::Node * node); guint32 get_color (const SPDocument * doc, const Inkscape::XML::Node * node); - const gchar * get_enum (const SPDocument * doc, + const gchar * get_enum (const SPDocument * doc, const Inkscape::XML::Node * node); bool set_bool (bool in, SPDocument * doc, Inkscape::XML::Node * node); int set_int (int in, SPDocument * doc, Inkscape::XML::Node * node); float set_float (float in, SPDocument * doc, Inkscape::XML::Node * node); const gchar * set_string (const gchar * in, SPDocument * doc, Inkscape::XML::Node * node); - guint32 set_color (guint32 in, SPDocument * doc, Inkscape::XML::Node * node); + guint32 set_color (guint32 in, SPDocument * doc, Inkscape::XML::Node * node); const gchar * name (void) {return _name;} static Parameter * make (Inkscape::XML::Node * in_repr, Inkscape::Extension::Extension * in_ext); virtual Gtk::Widget * get_widget (SPDocument * doc, Inkscape::XML::Node * node, sigc::signal<void> * changeSignal); virtual Glib::ustring * string (void); - virtual void insert_subparam_strings(std::list <std::string> &retlist) {}; + virtual void insert_subparam_strings(std::list <std::string> &/*retlist*/) {}; gchar const * get_tooltip (void) { return _desc; } }; } /* namespace Extension */ } /* namespace Inkscape */ -#endif /* __INK_EXTENSION_PARAM_H__ */ +#endif /* INK_EXTENSION_PARAM_H_SEEN */ /* Local Variables: |
