diff options
Diffstat (limited to 'doc/Scintilla')
-rwxr-xr-x | doc/Scintilla/ScintillaDoc.html | 8 | ||||
-rwxr-xr-x | doc/Scintilla/ScintillaHistory.html | 12 |
2 files changed, 10 insertions, 10 deletions
diff --git a/doc/Scintilla/ScintillaDoc.html b/doc/Scintilla/ScintillaDoc.html index 34af1a5..a32f9ef 100755 --- a/doc/Scintilla/ScintillaDoc.html +++ b/doc/Scintilla/ScintillaDoc.html @@ -2886,7 +2886,7 @@ struct TextToFind { Use <a class="message" href="#SCI_GETENDSTYLED"><code>SCI_GETENDSTYLED</code></a> to retrieve the current "styled to" position and <a class="message" href="#SCI_STARTSTYLING"><code>SCI_STARTSTYLING</code></a> - to reset the styling position and mask (<code>0x1f </code> in the default tqlayout of 5 style bits and 3 indicator bits) + to reset the styling position and mask (<code>0x1f </code> in the default layout of 5 style bits and 3 indicator bits) when you are done.</p> <p>The number of bits used for styles can be altered with <a class="message" @@ -4110,10 +4110,10 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ Independent from drawing a visual flag at the begin the subline can have an indention.</p> <p>Much of the time used by Scintilla is spent on laying out and drawing text. The same text - tqlayout calculations may be performed many times even when the data used in these calculations - does not change. To avoid these unnecessary calculations in some circumstances, the line tqlayout + layout calculations may be performed many times even when the data used in these calculations + does not change. To avoid these unnecessary calculations in some circumstances, the line layout cache can store the results of the calculations. The cache is invalidated whenever the - underlying data, such as the contents or styling of the document changes. Caching the tqlayout of + underlying data, such as the contents or styling of the document changes. Caching the layout of the whole document has the most effect, making dynamic line wrap as much as 20 times faster but this requires 7 times the memory required by the document contents plus around 80 bytes per line.</p> diff --git a/doc/Scintilla/ScintillaHistory.html b/doc/Scintilla/ScintillaHistory.html index c10e86e..94a7984 100755 --- a/doc/Scintilla/ScintillaHistory.html +++ b/doc/Scintilla/ScintillaHistory.html @@ -578,7 +578,7 @@ Empty ranges can no longer be dragged. </li> <li> - Crash fixed when calls made that use tqlayout inside the painted notification. + Crash fixed when calls made that use layout inside the painted notification. </li> <li> Bug fixed where Scintilla created pixmap buffers that were too large leading @@ -595,8 +595,8 @@ SciTE HTML exporter no longer honours monospaced font setting. </li> <li> - Line tqlayout cache in page mode caches the line of the caret. An assertion is - now used to ensure that the tqlayout reentrancy problem that caused this + Line layout cache in page mode caches the line of the caret. An assertion is + now used to ensure that the layout reentrancy problem that caused this is easier to find. </li> <li> @@ -1285,7 +1285,7 @@ Bug fixed where SCI_LINEENDWRAP would move too far when line ends are visible. </li> <li> - Bugs fixed where calltips with tqunicode or other non-ASCII text would display + Bugs fixed where calltips with unicode or other non-ASCII text would display incorrectly. </li> <li> @@ -1533,7 +1533,7 @@ Bug in SciTE on Windows fixed where clipboard commands stopped working. </li> <li> - Crashing bugs in display fixed in line tqlayout cache. + Crashing bugs in display fixed in line layout cache. </li> <li> Crashing bug may be fixed on AMD64 processor on GTK+. @@ -2954,7 +2954,7 @@ Released on 15 March 2002. </li> <li> - Line tqlayout cache implemented to improve performance by maintaining + Line layout cache implemented to improve performance by maintaining the positioning of characters on lines. Can be set to cache nothing, the line with the caret, the visible page or the whole document. </li> |