diff options
author | nyamatongwe <devnull@localhost> | 2011-08-10 23:56:59 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-08-10 23:56:59 +1000 |
commit | 6860b289d19541ccb8d5be31c81c0f1aa992e9d7 (patch) | |
tree | a956b90c8d42a4f6041dce7251007f0b7e8e12d7 /src/ScintillaBase.cxx | |
parent | 4b3344ecf4e02df4ad1530e4b46d477457d73f95 (diff) | |
download | scintilla-mirror-6860b289d19541ccb8d5be31c81c0f1aa992e9d7.tar.gz |
Implement 'technology' concept which will allow GDI and Direct2D/DirectWrite
to run at the same time for different windows and operations.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index da6b03e0d..247f34c4e 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -222,7 +222,7 @@ void ScintillaBase::AutoCompleteStart(int lenEntered, const char *list) { } } ac.Start(wMain, idAutoComplete, sel.MainCaret(), PointMainCaret(), - lenEntered, vs.lineHeight, IsUnicodeMode()); + lenEntered, vs.lineHeight, IsUnicodeMode(), technology); PRectangle rcClient = GetClientRectangle(); Point pt = LocationFromPosition(sel.MainCaret() - lenEntered); @@ -419,6 +419,7 @@ void ScintillaBase::CallTipShow(Point pt, const char *defn) { vs.styles[ctStyle].sizeZoomed, CodePage(), vs.styles[ctStyle].characterSet, + vs.technology, wMain); // If the call-tip window would be out of the client // space, adjust so it displays above the text. |