diff options
author | nyamatongwe <unknown> | 2000-10-03 11:31:47 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-10-03 11:31:47 +0000 |
commit | a67e810e17bcb5db90f2f0f53b90533c23cee8ed (patch) | |
tree | 815fb27f2ecc79464f6cc75a56789d3a43babe3e /win32/ScintillaWin.cxx | |
parent | 57e0eed5ab57d6e2607a41a33336e26cd7f11202 (diff) | |
download | scintilla-mirror-a67e810e17bcb5db90f2f0f53b90533c23cee8ed.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.cxx | 2 |
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; |