summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabiertxof <jtx@jtx>2017-04-28 19:33:59 +0000
committerJabiertxof <jtx@jtx>2017-04-28 19:33:59 +0000
commit3979c5704590535373f98150fac094cf31e75c19 (patch)
tree9a0ccd398729401fcb457a0d13890b852543f32e /src
parentFixing remove prefs (diff)
parentFix regression introduced in r15634 (diff)
downloadinkscape-3979c5704590535373f98150fac094cf31e75c19.tar.gz
inkscape-3979c5704590535373f98150fac094cf31e75c19.zip
Update to trunk
(bzr r15620.1.8)
Diffstat (limited to 'src')
-rw-r--r--src/extension/param/radiobutton.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extension/param/radiobutton.cpp b/src/extension/param/radiobutton.cpp
index 2e757febe..a08ba6860 100644
--- a/src/extension/param/radiobutton.cpp
+++ b/src/extension/param/radiobutton.cpp
@@ -44,9 +44,9 @@ namespace Extension {
Note that value and text MUST be non-NULL. This is ensured by newing only at one location in the code where non-NULL checks are made. */
class optionentry {
public:
- optionentry (Glib::ustring * val, Glib::ustring * text) {
+ optionentry (Glib::ustring * val, Glib::ustring * txt) {
value = val;
- text = text;
+ text = txt;
}
~optionentry() {
delete value;