summaryrefslogtreecommitdiff
path: root/xfixes
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2008-09-22 12:42:41 -0700
committerKeith Packard <keithp@keithp.com>2008-09-22 12:43:30 -0700
commitca9fae00795a114bca4397c32b543d6326a4c547 (patch)
tree5467c53cb04fb3e574d188171553ca7be700b526 /xfixes
parentad14239a358cf65e5702ec7d054aa1db4f1cdd68 (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 'xfixes')
-rwxr-xr-xxfixes/saveset.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfixes/saveset.c b/xfixes/saveset.c
index 31664ab65..29de0d8f2 100755
--- a/xfixes/saveset.c
+++ b/xfixes/saveset.c
@@ -29,7 +29,7 @@
int
ProcXFixesChangeSaveSet(ClientPtr client)
{
- Bool toRoot, remap;
+ Bool toRoot, map;
int result;
WindowPtr pWin;
REQUEST(xXFixesChangeSaveSetReq);
@@ -56,8 +56,8 @@ ProcXFixesChangeSaveSet(ClientPtr client)
return( BadValue );
}
toRoot = (stuff->target == SaveSetRoot);
- remap = (stuff->map == SaveSetMap);
- result = AlterSaveSetForClient(client, pWin, stuff->mode, toRoot, remap);
+ map = (stuff->map == SaveSetMap);
+ result = AlterSaveSetForClient(client, pWin, stuff->mode, toRoot, map);
if (client->noClientException != Success)
return(client->noClientException);
else