summaryrefslogtreecommitdiffstats
path: root/src/extension/param/radiobutton.cpp
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2017-04-28 17:05:51 +0000
committerEduard Braun <eduard.braun2@gmx.de>2017-04-28 17:05:51 +0000
commit42f4d5a56491249f38fd879bc0b651fbb454ac1b (patch)
tree69b39b96cef271d0bb9acbf2d75f7329bee6c2d9 /src/extension/param/radiobutton.cpp
parentPackaging: Fix wrong working directory in shortcuts created by NSIS installer (diff)
downloadinkscape-42f4d5a56491249f38fd879bc0b651fbb454ac1b.tar.gz
inkscape-42f4d5a56491249f38fd879bc0b651fbb454ac1b.zip
Fix regression introduced in r15634
Fixed bugs: - https://launchpad.net/bugs/1686549 (bzr r15647)
Diffstat (limited to 'src/extension/param/radiobutton.cpp')
-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;