aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2010-05-08 09:20:00 +0000
committernyamatongwe <unknown>2010-05-08 09:20:00 +0000
commit51b3878c8763f7279c2c625c04b7a03f422c8d50 (patch)
tree7aded72d42db5b5e799eae903edaa3753610fed1
parent4981a36e52e832910c7534439bd816b165bfff65 (diff)
downloadscintilla-mirror-51b3878c8763f7279c2c625c04b7a03f422c8d50.tar.gz
Switched to using documented parameter for SCI_LOADLEXERLIBRARY
on GTK+.
-rw-r--r--gtk/ScintillaGTK.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx
index 23837b9ea..617a232f5 100644
--- a/gtk/ScintillaGTK.cxx
+++ b/gtk/ScintillaGTK.cxx
@@ -828,7 +828,7 @@ sptr_t ScintillaGTK::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam
#ifdef SCI_LEXER
case SCI_LOADLEXERLIBRARY:
- LexerManager::GetInstance()->Load(reinterpret_cast<const char*>(wParam));
+ LexerManager::GetInstance()->Load(reinterpret_cast<const char*>(lParam));
break;
#endif
case SCI_TARGETASUTF8: