calc: on editing invalidation of view with different zoom is wrong
[LibreOffice.git] / external / clucene / patches / ostream-wchar_t.patch
blob63c9e148144eff10bbf87410dbc48451115ea41b
1 --- src/core/CLucene/index/DocumentsWriterThreadState.cpp
2 +++ src/core/CLucene/index/DocumentsWriterThreadState.cpp
3 @@ -484,7 +484,7 @@
4 last->next = fp->next;
6 if (_parent->infoStream != NULL)
7 - (*_parent->infoStream) << " remove field=" << fp->fieldInfo->name << "\n";
8 + (*_parent->infoStream) << " remove field\n";
10 _CLDELETE(fp);
11 } else {
12 @@ -557,7 +557,7 @@
13 fieldDataArray[i]->processField(analyzer);
15 if (maxTermPrefix != NULL && _parent->infoStream != NULL)
16 - (*_parent->infoStream) << "WARNING: document contains at least one immense term (longer than the max length " << MAX_TERM_LENGTH << "), all of which were skipped. Please correct the analyzer to not produce such terms. The prefix of the first immense term is: '" << maxTermPrefix << "...'\n";
17 + (*_parent->infoStream) << "WARNING: document contains at least one immense term (longer than the max length " << MAX_TERM_LENGTH << "), all of which were skipped. Please correct the analyzer to not produce such terms.\n";
19 if (_parent->ramBufferSize != IndexWriter::DISABLE_AUTO_FLUSH
20 && _parent->numBytesUsed > 0.95 * _parent->ramBufferSize)
21 @@ -910,7 +910,7 @@
22 // truncate the token stream after maxFieldLength tokens.
23 if ( length >= maxFieldLength) {
24 if (_parent->infoStream != NULL)
25 - (*_parent->infoStream) << "maxFieldLength " << maxFieldLength << " reached for field " << fieldInfo->name << ", ignoring following tokens\n";
26 + (*_parent->infoStream) << "maxFieldLength " << maxFieldLength << " reached for field, ignoring following tokens\n";
27 break;
29 } else if (length > IndexWriter::DEFAULT_MAX_FIELD_LENGTH) {