From 0e579405cabce1320d0033a7e2ade986a954ef09 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Sat, 18 Nov 2006 20:24:47 +0000 Subject: [PATCH] hopefully fix client linking. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15968 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/client/client.C | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/client/client.C b/src/client/client.C index 1d3ee28dec..424f786234 100644 --- a/src/client/client.C +++ b/src/client/client.C @@ -13,6 +13,7 @@ #include #include "debug.h" +#include "support/unicode.h" #include "support/lstrings.h" #include @@ -69,6 +70,13 @@ using std::cin; using std::endl; +IconvProcessor & utf8ToUcs4() +{ + static IconvProcessor iconv(ucs4_codeset, "UTF-8"); + return iconv; +} + + namespace support { string itoa(unsigned int i) @@ -498,8 +506,6 @@ int p(vector const & arg) } // namespace cmdline - - } // namespace lyx -- 2.39.2