mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
ttsnoop: resolve some compiler warnings
This commit is contained in:
parent
7c3c03388a
commit
680f79aac3
4 changed files with 11 additions and 7 deletions
|
@ -21,6 +21,7 @@
|
|||
* ** DELETE THE GENERATED COMMENTS! **
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <Xm/Xm.h>
|
||||
#include "dtb_utils.h"
|
||||
|
@ -76,7 +77,7 @@ _DtTtMsgCbChooserSet(
|
|||
instance, dtb_ttsnoop_ttsnoop_win.ttsnoopWin );
|
||||
}
|
||||
XtVaSetValues( instance->callbackChooser, XmNtitle, title, NULL );
|
||||
XtPointer xtPtr = (XtPointer)isMessage;
|
||||
XtPointer xtPtr = (XtPointer) (intptr_t) isMessage;
|
||||
XtVaSetValues( instance->callbackAddButton, XmNuserData, xtPtr, NULL );
|
||||
XtVaSetValues( instance->callbackAddCancelButton,
|
||||
XmNuserData, entity, NULL );
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
* ** DELETE THE GENERATED COMMENTS! **
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <Xm/Xm.h>
|
||||
#include "dtb_utils.h"
|
||||
|
@ -119,7 +120,7 @@ _DtTtMessageSetUpdating(
|
|||
)
|
||||
{
|
||||
tt_message_user_set( msg, (int) (long) _DtTtMessageUpdating,
|
||||
(void *)updating );
|
||||
(void *) (intptr_t)updating );
|
||||
}
|
||||
|
||||
typedef enum {
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
* ** DELETE THE GENERATED COMMENTS! **
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <Xm/Xm.h>
|
||||
#include "dtb_utils.h"
|
||||
|
@ -82,7 +83,7 @@ _DtTtPatternSetUpdating(
|
|||
)
|
||||
{
|
||||
tt_pattern_user_set( pat, (int) (long) _DtTtPatternUpdating,
|
||||
(void *)updating );
|
||||
(void *) (intptr_t) updating );
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
* ** DELETE THE GENERATED COMMENTS! **
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <Xm/Xm.h>
|
||||
#include "dtb_utils.h"
|
||||
|
@ -403,7 +404,7 @@ choiceOkayed(
|
|||
}
|
||||
ival = 0;
|
||||
sscanf( text, "%i", &ival );
|
||||
msg = (Tt_message)ival;
|
||||
msg = (Tt_message) (intptr_t) ival;
|
||||
if (DtTtIndex( DTTT_MESSAGE, msg ) < 0) {
|
||||
return;
|
||||
}
|
||||
|
@ -438,7 +439,7 @@ choiceOkayed(
|
|||
}
|
||||
ival = 0;
|
||||
sscanf( text, "%i", &ival );
|
||||
pat = (Tt_pattern)ival;
|
||||
pat = (Tt_pattern) (intptr_t) ival;
|
||||
if (DtTtIndex( DTTT_PATTERN, pat ) < 0) {
|
||||
return;
|
||||
}
|
||||
|
@ -472,7 +473,7 @@ choiceOkayed(
|
|||
}
|
||||
ival = 0;
|
||||
sscanf( text, "%i", &ival );
|
||||
pats = (Tt_pattern *)ival;
|
||||
pats = (Tt_pattern *) (intptr_t) ival;
|
||||
if (DtTtIndex( DTTT_DTSESSION, pats ) < 0) {
|
||||
return;
|
||||
}
|
||||
|
@ -498,7 +499,7 @@ choiceOkayed(
|
|||
}
|
||||
ival = 0;
|
||||
sscanf( text, "%i", &ival );
|
||||
pats = (Tt_pattern *)ival;
|
||||
pats = (Tt_pattern *) (intptr_t) ival;
|
||||
if (DtTtIndex( DTTT_DTFILE, pats ) < 0) {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue