summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2008-10-03 15:33:47 -0400
committerAdam Jackson <ajax@redhat.com>2008-10-03 17:51:19 -0400
commit31136b9467c2a17bbed4a51d6a6c41e3290bd236 (patch)
treeb77fb4a81537cd8725e14486c07b2c78cf3dfa6c
parenteaf3fdf97014c27aececa8505c2713e7c9a537fc (diff)
Unexport MakeClientGrab{Imp,P}ervious
xtrap used to use these, but it's gone now. xtest still does but it's linked statically.
-rw-r--r--hw/xfree86/loader/dixsym.c2
-rw-r--r--os/connection.c4
2 files changed, 2 insertions, 4 deletions
diff --git a/hw/xfree86/loader/dixsym.c b/hw/xfree86/loader/dixsym.c
index a18a0ea27..359c25695 100644
--- a/hw/xfree86/loader/dixsym.c
+++ b/hw/xfree86/loader/dixsym.c
@@ -443,8 +443,6 @@ _X_HIDDEN void *dixLookupTab[] = {
SYMFUNC(AttendClient)
SYMFUNC(AddEnabledDevice)
SYMFUNC(RemoveEnabledDevice)
- SYMFUNC(MakeClientGrabPervious)
- SYMFUNC(MakeClientGrabImpervious)
SYMVAR(GrabInProgress)
#ifdef XKB
diff --git a/os/connection.c b/os/connection.c
index a111fa5ba..e80b95eb8 100644
--- a/os/connection.c
+++ b/os/connection.c
@@ -1218,7 +1218,7 @@ AttendClient (ClientPtr client)
/* make client impervious to grabs; assume only executing client calls this */
-_X_EXPORT void
+void
MakeClientGrabImpervious(ClientPtr client)
{
OsCommPtr oc = (OsCommPtr)client->osPrivate;
@@ -1237,7 +1237,7 @@ MakeClientGrabImpervious(ClientPtr client)
/* make client pervious to grabs; assume only executing client calls this */
-_X_EXPORT void
+void
MakeClientGrabPervious(ClientPtr client)
{
OsCommPtr oc = (OsCommPtr)client->osPrivate;