mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
dtinfo: ensure the print setup dialog initializing properly.
This commit is contained in:
parent
342386bfab
commit
a84595bf03
1 changed files with 16 additions and 1 deletions
|
@ -306,7 +306,6 @@ customizePrintSetupBox(AppPrintData *p)
|
|||
f_selected_field = selected_field = XtVaCreateManagedWidget("selected_field",
|
||||
xmLabelWidgetClass,
|
||||
how_many_form,
|
||||
XmNlabelString, label,
|
||||
XmNalignment, XmALIGNMENT_END,
|
||||
XmNrightAttachment, XmATTACH_FORM,
|
||||
XmNrightOffset, 2,
|
||||
|
@ -582,6 +581,21 @@ CancelCB(Widget print_dialog, XtPointer client_data, XtPointer call_data)
|
|||
|
||||
}
|
||||
|
||||
/*
|
||||
* ------------------------------------------------------------------------
|
||||
* Name: DestroyCB
|
||||
*
|
||||
* Description:
|
||||
*
|
||||
* Called when the Print Setup dialog is destroyed.
|
||||
*
|
||||
*/
|
||||
static void
|
||||
DestroyCB(Widget print_dialog, XtPointer client_data, XtPointer call_data)
|
||||
{
|
||||
((AppPrintData*)client_data)->f_print_dialog = NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* ------------------------------------------------------------------------
|
||||
* Name: CreatePrintSetup
|
||||
|
@ -676,6 +690,7 @@ CreatePrintSetup(Widget parent, AppPrintData* p)
|
|||
|
||||
XtAddCallback(p->f_print_dialog, DtNprintCallback, PrintCB, (XtPointer)p);
|
||||
XtAddCallback(p->f_print_dialog, DtNcancelCallback, CancelCB, (XtPointer)p);
|
||||
XtAddCallback(p->f_print_dialog, XmNdestroyCallback, DestroyCB, (XtPointer)p);
|
||||
|
||||
// add context help for dialog
|
||||
|
||||
|
|
Loading…
Reference in a new issue