xfree86: Remove unused xf86PixmapKeyRec
Reviewed-by: Matt Turner <mattst88@gmail.com> Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
63b9d67d7f
commit
1b3c57f075
|
@ -62,9 +62,6 @@ extern _X_EXPORT DevPrivateKeyRec xf86ScreenKeyRec;
|
|||
extern _X_EXPORT DevPrivateKeyRec xf86CreateRootWindowKeyRec;
|
||||
#define xf86CreateRootWindowKey (&xf86CreateRootWindowKeyRec)
|
||||
|
||||
extern _X_EXPORT DevPrivateKeyRec xf86PixmapKeyRec;
|
||||
#define xf86PixmapKey (&xf86PixmapKeyRec)
|
||||
|
||||
extern _X_EXPORT ScrnInfoPtr *xf86Screens; /* List of pointers to ScrnInfoRecs */
|
||||
extern _X_EXPORT const unsigned char byte_reversed[256];
|
||||
extern _X_EXPORT Bool fbSlotClaimed;
|
||||
|
|
|
@ -49,7 +49,6 @@
|
|||
|
||||
DevPrivateKeyRec xf86CreateRootWindowKeyRec;
|
||||
DevPrivateKeyRec xf86ScreenKeyRec;
|
||||
DevPrivateKeyRec xf86PixmapKeyRec;
|
||||
|
||||
ScrnInfoPtr *xf86Screens = NULL; /* List of ScrnInfos */
|
||||
const unsigned char byte_reversed[256] =
|
||||
|
|
|
@ -732,8 +732,7 @@ InitOutput(ScreenInfo *pScreenInfo, int argc, char **argv)
|
|||
FatalError("Cannot register DDX private keys");
|
||||
|
||||
if (!dixRegisterPrivateKey(&xf86ScreenKeyRec, PRIVATE_SCREEN, 0) ||
|
||||
!dixRegisterPrivateKey(&xf86CreateRootWindowKeyRec, PRIVATE_SCREEN, 0) ||
|
||||
!dixRegisterPrivateKey(&xf86PixmapKeyRec, PRIVATE_PIXMAP, 0))
|
||||
!dixRegisterPrivateKey(&xf86CreateRootWindowKeyRec, PRIVATE_SCREEN, 0))
|
||||
FatalError("Cannot register DDX private keys");
|
||||
|
||||
for (i = 0; i < xf86NumScreens; i++) {
|
||||
|
|
Loading…
Reference in New Issue