diff options
| author | Eduard Braun <eduard.braun2@gmx.de> | 2017-04-28 17:05:51 +0000 |
|---|---|---|
| committer | Eduard Braun <eduard.braun2@gmx.de> | 2017-04-28 17:05:51 +0000 |
| commit | 42f4d5a56491249f38fd879bc0b651fbb454ac1b (patch) | |
| tree | 69b39b96cef271d0bb9acbf2d75f7329bee6c2d9 /src/extension/param/radiobutton.cpp | |
| parent | Packaging: Fix wrong working directory in shortcuts created by NSIS installer (diff) | |
| download | inkscape-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.cpp | 4 |
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; |
