summaryrefslogtreecommitdiff
path: root/l10ntools/source/gConv.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools/source/gConv.cxx')
-rw-r--r--l10ntools/source/gConv.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/l10ntools/source/gConv.cxx b/l10ntools/source/gConv.cxx
index ff16706d9076..164b245addcf 100644
--- a/l10ntools/source/gConv.cxx
+++ b/l10ntools/source/gConv.cxx
@@ -302,12 +302,13 @@ void convert_gen_impl::lexRead(char *sBuf, int *nResult, int nMax_size)
// space enough for the whole line ?
if (*nResult <= nMax_size)
{
- msSourceBuffer.copy(sBuf, *nResult, miSourceReadIndex);
+// msSourceBuffer.copy(sBuf, *nResult, miSourceReadIndex);
+ l10nMem::showDebug(sBuf);
miSourceReadIndex = -1;
}
else
{
- msSourceBuffer.copy(sBuf, nMax_size, miSourceReadIndex);
+// msSourceBuffer.copy(sBuf, nMax_size, miSourceReadIndex);
*nResult = nMax_size;
miSourceReadIndex += nMax_size;
}