summaryrefslogtreecommitdiffstats
path: root/src/extension/param/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension/param/string.cpp')
-rw-r--r--src/extension/param/string.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extension/param/string.cpp b/src/extension/param/string.cpp
index 775bf62ee..59e21d77d 100644
--- a/src/extension/param/string.cpp
+++ b/src/extension/param/string.cpp
@@ -27,7 +27,7 @@ namespace Extension {
/** Free the allocated data. */
-ParamString::~ParamString(void)
+ParamString::~ParamString()
{
g_free(_value);
_value = nullptr;
@@ -136,7 +136,7 @@ public:
this->set_max_length(_pref->getMaxLength()); //Set the max length - default zero means no maximum
this->signal_changed().connect(sigc::mem_fun(this, &ParamStringEntry::changed_text));
};
- void changed_text (void);
+ void changed_text ();
};
@@ -146,7 +146,7 @@ public:
* This function responds to the box changing by grabbing the value
* from the text box and putting it in the parameter.
*/
-void ParamStringEntry::changed_text(void)
+void ParamStringEntry::changed_text()
{
Glib::ustring data = this->get_text();
_pref->set(data.c_str(), _doc, _node);