diff options
author | nyamatongwe <devnull@localhost> | 2003-01-03 02:45:30 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-01-03 02:45:30 +0000 |
commit | 042edf4a5c23061562badc91b5e1561f14427a67 (patch) | |
tree | d3c8c057328f8cbba002e33559f9f608a3bb9fdc /src/ScintillaBase.cxx | |
parent | 8e4bb194b668d64817ed4087c774febac090e256 (diff) | |
download | scintilla-mirror-042edf4a5c23061562badc91b5e1561f14427a67.tar.gz |
Enable text form XPM for autocompletion lists.
Enable line form XPM for markers.
Diffstat (limited to 'src/ScintillaBase.cxx')
-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 1c44b0bd6..620513b4f 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -510,7 +510,7 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara return ac.dropRestOfWord; case SCI_REGISTERIMAGE: - ac.lb.SetTypeXpm(wParam, reinterpret_cast<const char **>(lParam)); + ac.lb.SetTypeXpm(wParam, reinterpret_cast<const char *>(lParam)); break; case SCI_CALLTIPSHOW: { |