From: keescook Date: Thu, 25 May 2006 20:40:42 +0000 (+0000) Subject: Correct my translation call. I shouldn't call gettext directly. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0e0ded38da27b91261c0a27d788ec3e71f7bdcd1;p=inkscape.git Correct my translation call. I shouldn't call gettext directly. --- 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;