summaryrefslogtreecommitdiffstats
path: root/src/extension/prefdialog/parameter-notebook.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension/prefdialog/parameter-notebook.h')
-rw-r--r--src/extension/prefdialog/parameter-notebook.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/extension/prefdialog/parameter-notebook.h b/src/extension/prefdialog/parameter-notebook.h
index a50ad1dca..ea51162fe 100644
--- a/src/extension/prefdialog/parameter-notebook.h
+++ b/src/extension/prefdialog/parameter-notebook.h
@@ -54,9 +54,9 @@ private:
~ParamNotebookPage() override;
Gtk::Widget *get_widget(SPDocument *doc, Inkscape::XML::Node *node, sigc::signal<void> *changeSignal) override;
- void paramString (std::list <std::string> &list);
- char *get_text () {return _text;};
- InxParameter *get_param (const char *name) override;
+ void string(std::list <std::string> &list) const override;
+ char *get_text() { return _text; };
+ InxParameter *get_param(const char *name) override;
}; /* class ParamNotebookPage */
/** A table to store the pages with parameters for this notebook.
@@ -73,7 +73,7 @@ public:
* A function to get the currentpage and the parameters in a string form.
* @return A string with the 'value' and all the parameters on all pages as command line arguments.
*/
- void string (std::list <std::string> &list) const override;
+ void string(std::list <std::string> &list) const override;
// Explicitly call superclass version to avoid method being hidden.
void string(std::string &string) const override {return InxParameter::string(string);}