dix: missing parameter to SetCursorPosition in CheckMotion ifndef MPX
mi: missing include in misprite.c ifndef MPX
This commit is contained in:
parent
e88bc0e55a
commit
bdf718907b
11
Changelog
11
Changelog
|
@ -8,6 +8,17 @@ Files:
|
||||||
dix/cursor.c
|
dix/cursor.c
|
||||||
mi/mieq.c
|
mi/mieq.c
|
||||||
|
|
||||||
|
____________________________________________________________
|
||||||
|
|
||||||
|
dix: missing parameter to SetCursorPosition in CheckMotion ifndef MPX
|
||||||
|
|
||||||
|
mi: missing include in misprite.c ifndef MPX
|
||||||
|
|
||||||
|
Files:
|
||||||
|
dix/events.c
|
||||||
|
mi/misprite.c
|
||||||
|
|
||||||
|
|
||||||
== 27.11.06 ==
|
== 27.11.06 ==
|
||||||
mi: free allocated memory in miDCCloseScreen and in miDCInitialize in case
|
mi: free allocated memory in miDCCloseScreen and in miDCInitialize in case
|
||||||
of errors.
|
of errors.
|
||||||
|
|
|
@ -2136,7 +2136,7 @@ CheckMotion(xEvent *xE, DeviceIntPtr pDev)
|
||||||
(pSprite->hotPhys.y != XE_KBPTR.rootY))
|
(pSprite->hotPhys.y != XE_KBPTR.rootY))
|
||||||
{
|
{
|
||||||
(*pSprite->hotPhys.pScreen->SetCursorPosition)(
|
(*pSprite->hotPhys.pScreen->SetCursorPosition)(
|
||||||
pSprite->hotPhys.pScreen,
|
pDev, pSprite->hotPhys.pScreen,
|
||||||
pSprite->hotPhys.x, pSprite->hotPhys.y, FALSE);
|
pSprite->hotPhys.x, pSprite->hotPhys.y, FALSE);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -56,15 +56,13 @@ in this Software without prior written authorization from The Open Group.
|
||||||
# include "mispritest.h"
|
# include "mispritest.h"
|
||||||
# include "dixfontstr.h"
|
# include "dixfontstr.h"
|
||||||
# include <X11/fonts/fontstruct.h>
|
# include <X11/fonts/fontstruct.h>
|
||||||
|
# include "inputstr.h"
|
||||||
|
|
||||||
#ifdef RENDER
|
#ifdef RENDER
|
||||||
# include "mipict.h"
|
# include "mipict.h"
|
||||||
#endif
|
#endif
|
||||||
# include "damage.h"
|
# include "damage.h"
|
||||||
|
|
||||||
#ifdef MPX
|
|
||||||
# include "inputstr.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#define SPRITE_DEBUG_ENABLE 0
|
#define SPRITE_DEBUG_ENABLE 0
|
||||||
|
|
Loading…
Reference in New Issue