Fix warnings in dtwm

- Improve pointer/int compatibility
- Include unpublished Dt headers in Dt
- Use <Xm/XmPrivate.h> for unpublished Motif functions

There are still warnings left generated because
ElementValue.parsed_value should really be a union.

There are also some warnings left because of XtPointer
casting and some unused variables and functions.
This commit is contained in:
Marcin Cieslak
2012-08-31 01:17:47 +02:00
committed by Jon Trulson
parent 8a57173ec2
commit 6e37640f11
37 changed files with 235 additions and 160 deletions

View File

@@ -41,6 +41,7 @@ static char rcsid[] = "$XConsortium: WmSignal.c /main/6 1996/10/17 16:20:07 drk
#include "WmGlobal.h" /* This should be the first include */
#include <signal.h>
#include <unistd.h>
/*
@@ -166,7 +167,9 @@ RestoreDefaultSignalHandlers (void)
void SetupWmSignalHandlers (int dummy)
{
#ifndef WSM
void (*signalHandler) ();
#endif
#ifdef WSM
struct sigaction sa;