diff options
Diffstat (limited to 'include')
-rwxr-xr-x | include/Platform.h | 4 | ||||
-rwxr-xr-x | include/Scintilla.iface | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/Platform.h b/include/Platform.h index 3cc849b..33245b9 100755 --- a/include/Platform.h +++ b/include/Platform.h @@ -354,7 +354,7 @@ public: virtual void SetClip(PRectangle rc)=0; virtual void FlushCachedState()=0; - virtual void SetUnicodeMode(bool tqunicodeMode_)=0; + virtual void SetUnicodeMode(bool unicodeMode_)=0; virtual void SetDBCSMode(int codePage)=0; #if defined(PLAT_QT) @@ -412,7 +412,7 @@ public: static ListBox *Allocate(); virtual void SetFont(Font &font)=0; - virtual void Create(Window &parent, int ctrlID, Point location, int lineHeight_, bool tqunicodeMode_)=0; + virtual void Create(Window &parent, int ctrlID, Point location, int lineHeight_, bool unicodeMode_)=0; virtual void SetAverageCharWidth(int width)=0; virtual void SetVisibleRows(int rows)=0; virtual int GetVisibleRows() const=0; diff --git a/include/Scintilla.iface b/include/Scintilla.iface index aff26d8..c3e5b56 100755 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1075,10 +1075,10 @@ val SC_CACHE_CARET=1 val SC_CACHE_PAGE=2 val SC_CACHE_DOCUMENT=3 -# Sets the degree of caching of tqlayout information. +# Sets the degree of caching of layout information. set void SetLayoutCache=2272(int mode,) -# Retrieve the degree of caching of tqlayout information. +# Retrieve the degree of caching of layout information. get int GetLayoutCache=2273(,) # Sets the document width assumed for scrolling. |