Commit 48279ae7 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

nxagent: make nxagentForceSynchronization a Boolean

parent 1ed28c85
...@@ -99,7 +99,7 @@ int nxagentCorruptedPixmaps = 0; ...@@ -99,7 +99,7 @@ int nxagentCorruptedPixmaps = 0;
int nxagentCorruptedWindows = 0; int nxagentCorruptedWindows = 0;
int nxagentCorruptedBackgrounds = 0; int nxagentCorruptedBackgrounds = 0;
int nxagentForceSynchronization = 0; Bool nxagentForceSynchronization = False;
_nxagentSynchronizationRec nxagentSynchronization = { (DrawablePtr) NULL, 0, 0, 0, 0, 0 }; _nxagentSynchronizationRec nxagentSynchronization = { (DrawablePtr) NULL, 0, 0, 0, 0, 0 };
......
...@@ -157,7 +157,7 @@ extern int nxagentCorruptedPixmaps; ...@@ -157,7 +157,7 @@ extern int nxagentCorruptedPixmaps;
extern int nxagentCorruptedWindows; extern int nxagentCorruptedWindows;
extern int nxagentCorruptedBackgrounds; extern int nxagentCorruptedBackgrounds;
extern int nxagentForceSynchronization; extern Bool nxagentForceSynchronization;
extern RegionPtr nxagentCreateRegion(DrawablePtr pDrawable, GCPtr pGC, int x, int y, extern RegionPtr nxagentCreateRegion(DrawablePtr pDrawable, GCPtr pGC, int x, int y,
int width, int height); int width, int height);
......
...@@ -660,7 +660,7 @@ static void nxagentSwitchDeferMode(void) ...@@ -660,7 +660,7 @@ static void nxagentSwitchDeferMode(void)
{ {
nxagentLaunchDialog(DIALOG_DISABLE_DEFER_MODE); nxagentLaunchDialog(DIALOG_DISABLE_DEFER_MODE);
nxagentForceSynchronization = 1; nxagentForceSynchronization = True;
} }
} }
......
...@@ -310,7 +310,7 @@ void nxagentBlockHandler(void * data, struct timeval **timeout, void * mask) ...@@ -310,7 +310,7 @@ void nxagentBlockHandler(void * data, struct timeval **timeout, void * mask)
* operation. * operation.
*/ */
if (nxagentForceSynchronization == 1) if (nxagentForceSynchronization)
{ {
#ifdef TEST #ifdef TEST
fprintf(stderr, "nxagentBlockHandler: Going to force a synchronization at %s.\n", fprintf(stderr, "nxagentBlockHandler: Going to force a synchronization at %s.\n",
...@@ -319,7 +319,7 @@ void nxagentBlockHandler(void * data, struct timeval **timeout, void * mask) ...@@ -319,7 +319,7 @@ void nxagentBlockHandler(void * data, struct timeval **timeout, void * mask)
nxagentSynchronizationLoop(NEVER_BREAK); nxagentSynchronizationLoop(NEVER_BREAK);
nxagentForceSynchronization = 0; nxagentForceSynchronization = False;
} }
else if (nxagentUserInput(NULL) == 0 && else if (nxagentUserInput(NULL) == 0 &&
!nxagentBlocking && !nxagentBlocking &&
......
...@@ -624,7 +624,7 @@ Bool nxagentCheckSpecialKeystroke(XKeyEvent *X, enum HandleEventResult *result) ...@@ -624,7 +624,7 @@ Bool nxagentCheckSpecialKeystroke(XKeyEvent *X, enum HandleEventResult *result)
return True; return True;
break; break;
case KEYSTROKE_FORCE_SYNCHRONIZATION: case KEYSTROKE_FORCE_SYNCHRONIZATION:
nxagentForceSynchronization = 1; nxagentForceSynchronization = True;
break; break;
#ifdef DUMP #ifdef DUMP
case KEYSTROKE_REGIONS_ON_SCREEN: case KEYSTROKE_REGIONS_ON_SCREEN:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment