diff os2/dw.c @ 306:9d13efce2894

Minor OS/2 cleanup. Added #defines for the signals, instead of using the text strings.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 31 Mar 2003 07:50:20 +0000
parents 4559a2fd2db2
children 324587c06cea
line wrap: on
line diff
--- a/os2/dw.c	Sun Mar 30 03:28:45 2003 +0000
+++ b/os2/dw.c	Mon Mar 31 07:50:20 2003 +0000
@@ -8050,21 +8050,6 @@
 {
 	ULONG message = 0L;
 
-	if(strcmp(signame, "lose-focus") == 0)
-	{
-		char tmpbuf[100];
-
-		WinQueryClassName(window, 99, tmpbuf);
-
-		if(strncmp(tmpbuf, "#2", 3) == 0)
-		{
-			HENUM henum = WinBeginEnumWindows(window);
-			HWND child = WinGetNextWindow(henum);
-			WinEndEnumWindows(henum);
-			if(child)
-				window = child;
-		}
-	}
 	if(window && signame && sigfunc)
 	{
 		if((message = _findsigmessage(signame)) != 0)