diff options
Diffstat (limited to 'src/XawIm.c')
-rw-r--r-- | src/XawIm.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/XawIm.c b/src/XawIm.c index 9f666d2..67f941d 100644 --- a/src/XawIm.c +++ b/src/XawIm.c @@ -90,7 +90,12 @@ in this Software without prior written authorization from the X Consortium. * *****************************************************/ -extern void XawVendorShellExtResize(Widget); +/* + * From Vendor.c + */ +void XawVendorShellExtResize(Widget); +void XawVendorStructureNotifyHandler(Widget, XtPointer, XEvent*, Boolean*); + static XawIcTableList CurrentSharedIcTable( XawVendorShellExtPart* /* ve */ @@ -1373,7 +1378,7 @@ _XawImRealize( if ( !XtIsRealized( w ) || !XtIsVendorShell( w ) ) return; if ((ve = GetExtPart( (VendorShellWidget) w ))) { XtAddEventHandler( w, (EventMask)StructureNotifyMask, FALSE, - XawVendorShellExtResize, (XtPointer)NULL ); + XawVendorStructureNotifyHandler, (XtPointer)NULL ); AllCreateIC(ve); } } |