aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/ScintillaWin.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-10-03 11:31:47 +0000
committernyamatongwe <devnull@localhost>2000-10-03 11:31:47 +0000
commit036b89d5335618318ea2ad575d397b5e146ae2d9 (patch)
tree815fb27f2ecc79464f6cc75a56789d3a43babe3e /win32/ScintillaWin.cxx
parentbf47b7f563c0eca28b8555c0b6bdfcfe70a659ac (diff)
downloadscintilla-mirror-036b89d5335618318ea2ad575d397b5e146ae2d9.tar.gz
Added PLATFORM_ASSERT which is a verson of the standard assert which
can be directed wither to debug output or message boxes on Windows.
Diffstat (limited to 'win32/ScintillaWin.cxx')
-rw-r--r--win32/ScintillaWin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx
index 1b20d05b9..00e127f98 100644
--- a/win32/ScintillaWin.cxx
+++ b/win32/ScintillaWin.cxx
@@ -264,7 +264,7 @@ static int InputCodePage() {
// Map the key codes to their equivalent SCK_ form
static int KeyTranslate(int keyIn) {
-//assert(!keyIn);
+//PLATFORM_ASSERT(!keyIn);
switch (keyIn) {
case VK_DOWN: return SCK_DOWN;
case VK_UP: return SCK_UP;