added handling for DestroyNotify of clipboard requestors.

This commit is contained in:
crs
2002-04-25 10:43:53 +00:00
parent f63d0e4ada
commit 7d9fa41514
4 changed files with 67 additions and 15 deletions

View File

@@ -160,6 +160,12 @@ void CXWindowsPrimaryScreen::run()
xevent.xproperty.time);
}
break;
case DestroyNotify:
// looks like one of the windows that requested a clipboard
// transfer has gone bye-bye.
destroyClipboardRequest(xevent.xdestroywindow.window);
break;
}
}
}