From: José Matox Date: Mon, 11 Sep 2006 11:58:47 +0000 (+0000) Subject: Fix from George to deal with the --disable-nls case X-Git-Tag: 1.6.10~12595 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=89a92e955d522e2c3b99f200424d28cdba95704e;p=features.git Fix from George to deal with the --disable-nls case git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14976 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/messages.C b/src/messages.C index 2b049c705e..1f192e9fc7 100644 --- a/src/messages.C +++ b/src/messages.C @@ -224,9 +224,9 @@ public: ~Pimpl() {} - string const get(string const & m) const + docstring const get(string const & m) const { - return m; + return lyx::from_ascii(m); } }; #endif