diff options
author | Keith Packard <keithp@keithp.com> | 2010-07-01 09:11:36 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-07-02 12:30:10 -0400 |
commit | a94cb400d15b8c78dc04148cbd8db8e5ec8364b5 (patch) | |
tree | 7ebaf251eefb26372590f487687971fbdd77e13c /dbe | |
parent | f0fcffe55f280add5e4db2f5e9198a48c6f1b015 (diff) |
Delete unused miDbe screen private private datatype
MiDbeScreenPrivPrivRec is not used in the server. Remove it, along
with the MI_DBE_SCREEN_PRIV_PRIV macro that tried to use it.
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Magnus.Kessler <Magnus.Kessler@gmx.net>
Diffstat (limited to 'dbe')
-rw-r--r-- | dbe/midbestr.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/dbe/midbestr.h b/dbe/midbestr.h index ae9f206fc..a47d8d9f1 100644 --- a/dbe/midbestr.h +++ b/dbe/midbestr.h @@ -48,11 +48,6 @@ #define MI_DBE_WINDOW_PRIV_PRIV_FROM_WINDOW(pWin)\ MI_DBE_WINDOW_PRIV_PRIV(DBE_WINDOW_PRIV(pWin)) -#define MI_DBE_SCREEN_PRIV_PRIV(pDbeScreenPriv) \ - (!(pDbeScreenPriv) ? NULL : (MiDbeScreenPrivPrivPtr) \ - dixLookupPrivate(&(pDbeScreenPriv)->devPrivates, miDbeScreenPrivPrivKey)) - - /* TYPEDEFS */ typedef struct _MiDbeWindowPrivPrivRec @@ -80,16 +75,5 @@ typedef struct _MiDbeWindowPrivPrivRec } MiDbeWindowPrivPrivRec, *MiDbeWindowPrivPrivPtr; -typedef struct _MiDbeScreenPrivPrivRec -{ - /* Place machine-specific fields in here. - * Since this is mi code, we do not really have machine-specific fields. - */ - - /* Pointer back to our screen private with which we are associated. */ - DbeScreenPrivPtr pDbeScreenPriv; - -} MiDbeScreenPrivPrivRec, *MiDbeScreenPrivPrivPtr; - #endif /* MIDBE_STRUCT_H */ |