From a67e810e17bcb5db90f2f0f53b90533c23cee8ed Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Tue, 3 Oct 2000 11:31:47 +0000 Subject: Added PLATFORM_ASSERT which is a verson of the standard assert which can be directed wither to debug output or message boxes on Windows. --- win32/ScintillaWin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'win32/ScintillaWin.cxx') 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; -- cgit v1.2.3