randr: make RRCrtcChanged() static
Only used locally inside rrcrtc.c, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
c7faaf16ca
commit
c6aa23769e
|
@ -588,13 +588,6 @@ RRSetCurrentConfig(ScreenPtr pScreen,
|
||||||
|
|
||||||
/* rrcrtc.c */
|
/* rrcrtc.c */
|
||||||
|
|
||||||
/*
|
|
||||||
* Notify the CRTC of some change; layoutChanged indicates that
|
|
||||||
* some position or size element changed
|
|
||||||
*/
|
|
||||||
extern _X_EXPORT void
|
|
||||||
RRCrtcChanged(RRCrtcPtr crtc, Bool layoutChanged);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Create a CRTC
|
* Create a CRTC
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -32,7 +32,7 @@ RESTYPE RRCrtcType = 0;
|
||||||
/*
|
/*
|
||||||
* Notify the CRTC of some change
|
* Notify the CRTC of some change
|
||||||
*/
|
*/
|
||||||
void
|
static void
|
||||||
RRCrtcChanged(RRCrtcPtr crtc, Bool layoutChanged)
|
RRCrtcChanged(RRCrtcPtr crtc, Bool layoutChanged)
|
||||||
{
|
{
|
||||||
ScreenPtr pScreen = crtc->pScreen;
|
ScreenPtr pScreen = crtc->pScreen;
|
||||||
|
|
Loading…
Reference in New Issue