GLXWorkstation.st
changeset 218 10072d9beba5
parent 216 f4fd44038317
child 219 9ff0660f447f
equal deleted inserted replaced
217:8066057d91a8 218:10072d9beba5
    19 
    19 
    20 GLXWorkstation comment:'
    20 GLXWorkstation comment:'
    21 COPYRIGHT (c) 1993 by Claus Gittinger
    21 COPYRIGHT (c) 1993 by Claus Gittinger
    22 	      All Rights Reserved
    22 	      All Rights Reserved
    23 
    23 
    24 $Header: /cvs/stx/stx/libview/GLXWorkstation.st,v 1.35 1995-11-10 17:00:56 cg Exp $
    24 $Header: /cvs/stx/stx/libview/GLXWorkstation.st,v 1.36 1995-11-10 21:19:55 cg Exp $
    25 '!
    25 '!
    26 
    26 
    27 !GLXWorkstation class methodsFor:'documentation'!
    27 !GLXWorkstation class methodsFor:'documentation'!
    28 
    28 
    29 copyright
    29 copyright
    40 "
    40 "
    41 !
    41 !
    42 
    42 
    43 version
    43 version
    44 "
    44 "
    45 $Header: /cvs/stx/stx/libview/GLXWorkstation.st,v 1.35 1995-11-10 17:00:56 cg Exp $
    45 $Header: /cvs/stx/stx/libview/GLXWorkstation.st,v 1.36 1995-11-10 21:19:55 cg Exp $
    46 "
    46 "
    47 !
    47 !
    48 
    48 
    49 documentation
    49 documentation
    50 "
    50 "
   351     }
   351     }
   352     lastRequestCode = event->request_code;
   352     lastRequestCode = event->request_code;
   353     lastMinorCode = event->minor_code;
   353     lastMinorCode = event->minor_code;
   354     lastResource = event->resourceid;
   354     lastResource = event->resourceid;
   355 
   355 
   356     fprintf(stderr, "XWORKSTAT: x-error cought maj=%d (0x%x) min=%d (0x%x) resource=%x\n",
   356     if (@global(ErrorPrinting) == true) {
   357 		    event->request_code, event->request_code,
   357         fprintf(stderr, "XWORKSTAT: x-error cought maj=%d (0x%x) min=%d (0x%x) resource=%x\n",
   358 		    event->minor_code, event->minor_code, event->resourceid);
   358 		        event->request_code, event->request_code,
   359     fprintf(stderr, "XWORKSTAT: x-error message is '%s'\n", lastErrorMsg);
   359 		        event->minor_code, event->minor_code, event->resourceid);
       
   360         fprintf(stderr, "XWORKSTAT: x-error message is '%s'\n", lastErrorMsg);
       
   361     }
   360 
   362 
   361     __errorInterruptWithIDAndParameter__(@symbol(DisplayError), __MKOBJ(dpy));
   363     __errorInterruptWithIDAndParameter__(@symbol(DisplayError), __MKOBJ(dpy));
   362     return 0;
   364     return 0;
   363 }
   365 }
   364 
   366