mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
libDtPrint: Resolve the 1 remaining compiler warning.
This commit is contained in:
parent
f8f04a5977
commit
49266f9019
1 changed files with 2 additions and 1 deletions
|
@ -53,6 +53,7 @@
|
||||||
#include <values.h>
|
#include <values.h>
|
||||||
#endif
|
#endif
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
#include <Xm/XmAll.h>
|
#include <Xm/XmAll.h>
|
||||||
#include <Xm/ActivatableT.h>
|
#include <Xm/ActivatableT.h>
|
||||||
|
@ -1465,7 +1466,7 @@ DestinationChangedCallback(
|
||||||
* button
|
* button
|
||||||
*/
|
*/
|
||||||
XtVaGetValues(w, XmNuserData, &user_data, NULL);
|
XtVaGetValues(w, XmNuserData, &user_data, NULL);
|
||||||
PSUB_PrintDestination(psub) = (XtEnum)user_data;
|
PSUB_PrintDestination(psub) = (XtEnum) (intptr_t) user_data;
|
||||||
/*
|
/*
|
||||||
* Update the print setup box controls sensitivity accordingly
|
* Update the print setup box controls sensitivity accordingly
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue