diff options
author | Owen Taylor <otaylor@redhat.com> | 2008-09-22 12:42:41 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2008-09-22 12:43:30 -0700 |
commit | ca9fae00795a114bca4397c32b543d6326a4c547 (patch) | |
tree | 5467c53cb04fb3e574d188171553ca7be700b526 /dix/dixutils.c | |
parent | ad14239a358cf65e5702ec7d054aa1db4f1cdd68 (diff) |
Change 'remap' to 'map' in saveset functions/macros
Now that the code has been fixed so that Unmap means unmap and not "don't
remap", 'remap' was confusing to have in the function names/parameters, so
change it to simple 'map'.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'dix/dixutils.c')
-rw-r--r-- | dix/dixutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dix/dixutils.c b/dix/dixutils.c index 22935cead..340564ecd 100644 --- a/dix/dixutils.c +++ b/dix/dixutils.c @@ -278,7 +278,7 @@ bad: int AlterSaveSetForClient(ClientPtr client, WindowPtr pWin, unsigned mode, - Bool toRoot, Bool remap) + Bool toRoot, Bool map) { int numnow; SaveSetElt *pTmp = NULL; @@ -304,7 +304,7 @@ AlterSaveSetForClient(ClientPtr client, WindowPtr pWin, unsigned mode, client->numSaved = numnow; SaveSetAssignWindow(client->saveSet[numnow - 1], pWin); SaveSetAssignToRoot(client->saveSet[numnow - 1], toRoot); - SaveSetAssignRemap(client->saveSet[numnow - 1], remap); + SaveSetAssignMap(client->saveSet[numnow - 1], map); return(Success); } else if ((mode == SetModeDelete) && (j < numnow)) |