diff options
author | nyamatongwe <devnull@localhost> | 2004-07-22 01:00:20 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2004-07-22 01:00:20 +0000 |
commit | 390ad158df3f69075c0289c3e42b015384913d4b (patch) | |
tree | e2b558e1dc8573974c40ada9d1334eefc0c8d4ea /src | |
parent | b9752304f74655340e396e0ba98f4e1c656c7720 (diff) | |
download | scintilla-mirror-390ad158df3f69075c0289c3e42b015384913d4b.tar.gz |
Fix for Unicode display of call tips.
Diffstat (limited to 'src')
-rw-r--r-- | src/ScintillaBase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index cc02674b3..066569f1d 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -360,7 +360,7 @@ void ScintillaBase::CallTipShow(Point pt, const char *defn) { defn, vs.styles[STYLE_DEFAULT].fontName, vs.styles[STYLE_DEFAULT].sizeZoomed, - IsUnicodeMode(), + CodePage(), wMain); // If the call-tip window would be out of the client // space, adjust so it displays above the text. |