summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/licensor.cpp
diff options
context:
space:
mode:
authorKees Cook <kees@outflux.net>2006-05-25 20:40:42 +0000
committerkeescook <keescook@users.sourceforge.net>2006-05-25 20:40:42 +0000
commit358e600b5ec3c575f6ed604131b5a964bea14856 (patch)
treec27786a0eee5301786555a975199ed0407a502e0 /src/ui/widget/licensor.cpp
parentFix for "[1490928] Error message after an internal error is not (diff)
downloadinkscape-358e600b5ec3c575f6ed604131b5a964bea14856.tar.gz
inkscape-358e600b5ec3c575f6ed604131b5a964bea14856.zip
Correct my translation call. I shouldn't call gettext directly.
(bzr r1010)
Diffstat (limited to 'src/ui/widget/licensor.cpp')
-rw-r--r--src/ui/widget/licensor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/widget/licensor.cpp b/src/ui/widget/licensor.cpp
index df00e358a..72c4663e4 100644
--- a/src/ui/widget/licensor.cpp
+++ b/src/ui/widget/licensor.cpp
@@ -45,7 +45,7 @@ protected:
};
LicenseItem::LicenseItem (struct rdf_license_t const* license, EntityEntry* entity, Registry &wr)
-: Gtk::RadioButton(gettext(license->name)), _lic(license), _eep(entity), _wr(wr)
+: Gtk::RadioButton(_(license->name)), _lic(license), _eep(entity), _wr(wr)
{
static Gtk::RadioButtonGroup group = get_group();
static bool first = true;