From 4d511c40f437adec6b8a635fe717605c1354f49c Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 15 Apr 2011 18:41:12 -0700 Subject: [PATCH] * lwlib-utils.h, lwlib-utils.c (XtSafelyDestroyWidget): Remove; unused. --- lwlib/ChangeLog | 2 ++ lwlib/lwlib-utils.c | 26 -------------------------- lwlib/lwlib-utils.h | 3 --- 3 files changed, 2 insertions(+), 29 deletions(-) diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog index f098b6d0ad..d6a76a9647 100644 --- a/lwlib/ChangeLog +++ b/lwlib/ChangeLog @@ -1,5 +1,7 @@ 2011-04-16 Paul Eggert + * lwlib-utils.h, lwlib-utils.c (XtSafelyDestroyWidget): Remove; unused. + * xlwmenu.c (XlwMenuSetValues): Rename/ move locals to avoid shadowing. (MINL): Define only if not emacs. diff --git a/lwlib/lwlib-utils.c b/lwlib/lwlib-utils.c index a3e1cb3b43..c590270a2a 100644 --- a/lwlib/lwlib-utils.c +++ b/lwlib/lwlib-utils.c @@ -141,29 +141,3 @@ XtWidgetBeingDestroyedP (Widget widget) { return widget->core.being_destroyed; } - -void -XtSafelyDestroyWidget (Widget widget) -{ -#if 0 - - /* this requires IntrinsicI.h (actually, InitialI.h) */ - - XtAppContext app = XtWidgetToApplicationContext(widget); - - if (app->dispatch_level == 0) - { - app->dispatch_level = 1; - XtDestroyWidget (widget); - /* generates an event so that the event loop will be called */ - XChangeProperty (XtDisplay (widget), XtWindow (widget), - XA_STRING, XA_STRING, 32, PropModeAppend, NULL, 0); - app->dispatch_level = 0; - } - else - XtDestroyWidget (widget); - -#else - abort (); -#endif -} diff --git a/lwlib/lwlib-utils.h b/lwlib/lwlib-utils.h index b988374288..ec3daab94e 100644 --- a/lwlib/lwlib-utils.h +++ b/lwlib/lwlib-utils.h @@ -15,7 +15,4 @@ Widget *XtCompositeChildren (Widget, unsigned int *); Boolean XtWidgetBeingDestroyedP (Widget widget); -void XtSafelyDestroyWidget (Widget); - #endif /* _LWLIB_UTILS_H_ */ - -- 2.20.1