From cfb128d291fbecb2b302e9942d36e9c41256b8a5 Mon Sep 17 00:00:00 2001
From: nyamatongwe
All lines of text in Scintilla are the same height, and this height is calculated from the @@ -213,7 +213,7 @@ SCI_SEARCHPREV(int flags, char *text)
SCI_GETVIEWWS -SCI_SETVIEWWS(bool visisble) +SCI_SETVIEWWS(bool visible)
White space can be made visible which may useful for languages in which whitespace is @@ -305,7 +305,7 @@ SCI_STYLESETCHARACTERSET(int stylenumber, int charset) window.
- SCI_STYLESETCHARACTERSET can set a styel to use a different character set than the default. + SCI_STYLESETCHARACTERSET can set a style to use a different character set than the default. For example, SCI_STYLESETCHARACTERSET(SCE_C_STRING, SC_CHARSET_RUSSIAN) would ensure that strings in Russian would display correctly. This feature currently only works on Windows. @@ -737,7 +737,7 @@ SCI_ADDREFDOCUMENT(<unused>,document *pdoc) SCI_RELEASEDOCUMENT(<unused>,document *pdoc)
- This is to allow simple split views of documents and so applications may maintain mutiple buffer + This is to allow simple split views of documents and so applications may maintain multiple buffer which may be individually selected into the editor. Each Scintilla has a pointer to a used document. Initially the used document is a default one created when the Scintilla was created. The SCI_GETDOCPOINTER call returns a pointer to the used document. @@ -801,7 +801,7 @@ SCI_ENSUREVISIBLE(int line)
Each fold point may be either expanded, displaying all its child lines, or - contracted, hding all the child lines. This is per view state and can be + contracted, hiding all the child lines. This is per view state and can be manipulated with SCI_SETFOLDEXPANDED and SCI_GETFOLDEXPANDED. Using SCI_SETFOLDEXPANDED does not show or hide any lines but only changes a state flag and the margin markers @@ -913,7 +913,7 @@ SCN_SAVEPOINTREACHED(int issavepoint) SCI_SETSAVEPOINT
- Sent to the container when the savepoint is entered or left, allowing the container to to + Sent to the container when the savepoint is entered or left, allowing the container to display a dirty indicator and change its menus. The first parameter is 1 when entering the save point, 0 when leaving.
-- cgit v1.2.3