Commit 31b9f3c8 authored by Vitaly Lipatov's avatar Vitaly Lipatov

add hack for space

parent 36c870e7
......@@ -1684,7 +1684,13 @@ void s_RTF_ListenerWriteDoc::_outputData(const UT_UCSChar * data, UT_uint32 leng
}
else
{
sBuf += (char)*pData++;
UT_UTF8String utf8;
utf8.appendUCS4(pData, 1);
UT_DEBUGMSG(("RTF Char OTHER: %s (0x%x)\n", utf8.utf8_str(), *pData));
//static_cast<char>
m_pie->write(utf8.utf8_str(), 1);
pData++;
//sBuf += (char)*pData++;
}
} else {
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment