comparison gui/wm/ws.c @ 35759:afb55738b1b7

Cosmetic: Replace DandD by DND. DND is used for the drag-and-drop functions. Additionally, revise two comments.
author ib
date Thu, 24 Jan 2013 16:49:53 +0000
parents 3919b6360e54
children 1aedd24c032b
comparison
equal deleted inserted replaced
35758:75724b59a3a8 35759:afb55738b1b7
592 592
593 break; 593 break;
594 594
595 case SelectionNotify: 595 case SelectionNotify:
596 596
597 /* Handle DandD */ 597 /* Handle drag & drop */
598 wsXDNDProcessSelection(wsWindowList[l], event); 598 wsXDNDProcessSelection(wsWindowList[l], event);
599 break; 599 break;
600 } 600 }
601 601
602 XFlush(wsDisplay); 602 XFlush(wsDisplay);
939 wsWindowList[l] = NULL; 939 wsWindowList[l] = NULL;
940 940
941 win->ReDraw = NULL; 941 win->ReDraw = NULL;
942 win->MouseHandler = NULL; 942 win->MouseHandler = NULL;
943 win->KeyHandler = NULL; 943 win->KeyHandler = NULL;
944 win->DandDHandler = NULL; 944 win->DNDHandler = NULL;
945 945
946 if (win->wsCursor != None) { 946 if (win->wsCursor != None) {
947 XFreeCursor(wsDisplay, win->wsCursor); 947 XFreeCursor(wsDisplay, win->wsCursor);
948 win->wsCursor = None; 948 win->wsCursor = None;
949 } 949 }