diff options
| author | Kees Cook <kees@outflux.net> | 2006-05-25 20:40:42 +0000 |
|---|---|---|
| committer | keescook <keescook@users.sourceforge.net> | 2006-05-25 20:40:42 +0000 |
| commit | 358e600b5ec3c575f6ed604131b5a964bea14856 (patch) | |
| tree | c27786a0eee5301786555a975199ed0407a502e0 /src/ui/widget/licensor.cpp | |
| parent | Fix for "[1490928] Error message after an internal error is not (diff) | |
| download | inkscape-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.cpp | 2 |
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; |
