1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-22 14:08:06 +01:00

Remove unused functions

These functions are not used:

- wDefaultsDestroyDomain
- PropWriteGNUstepWMAttr
- wSessionSendSaveYourSelf
- wXDNDClearAwareness
- clearWaitingAckState
- wSessionSaveClients
This commit is contained in:
Rodolfo García Peñas (kix)
2012-04-02 17:26:11 +02:00
committed by Carlos R. Mafra
parent ba786015b7
commit 517cd6a8be
9 changed files with 0 additions and 124 deletions

View File

@@ -244,24 +244,6 @@ Window PropGetClientLeader(Window window)
return leader;
}
void PropWriteGNUstepWMAttr(Window window, GNUstepWMAttributes * attr)
{
unsigned long data[9];
data[0] = attr->flags;
data[1] = attr->window_style;
data[2] = attr->window_level;
data[3] = 0; /* reserved */
/* The X protocol says XIDs are 32bit */
data[4] = attr->miniaturize_pixmap;
data[5] = attr->close_pixmap;
data[6] = attr->miniaturize_mask;
data[7] = attr->close_mask;
data[8] = attr->extra_flags;
XChangeProperty(dpy, window, _XA_GNUSTEP_WM_ATTR, _XA_GNUSTEP_WM_ATTR,
32, PropModeReplace, (unsigned char *)data, 9);
}
int PropGetWindowState(Window window)
{
long *data;