Trivial renamings.

SVN revision: 10631
This commit is contained in:
Kim Woelders 2004-06-29 13:19:23 +00:00
parent 19943578c1
commit 46cd16985e
7 changed files with 11 additions and 11 deletions

View File

@ -2050,8 +2050,8 @@ void DrawEwinShape(EWin * ewin, int md, int x, int y, int w,
void PropagateShapes(Window win);
/* edge.c */
void ShowEdgeWindows(void);
void HideEdgeWindows(void);
void EdgeWindowsShow(void);
void EdgeWindowsHide(void);
void EdgeHandleEnter(XEvent * ev);
void EdgeHandleLeave(XEvent * ev);
void EdgeHandleMotion(XEvent * ev);

View File

@ -342,7 +342,7 @@ SetCurrentArea(int ax, int ay)
FX_DeskChange();
/* update which "edge flip resistance" detector windows are visible */
ShowEdgeWindows();
EdgeWindowsShow();
/* update our pager */
UpdatePagerSel();

View File

@ -639,7 +639,7 @@ ConformEwinToDesktop(EWin * ewin)
ewin->desktop = 0;
}
XRaiseWindow(disp, ewin->win);
ShowEdgeWindows();
EdgeWindowsShow();
ICCCM_Configure(ewin);
}
else if (ewin->parent != desks.desk[ewin->desktop].win)
@ -1169,7 +1169,7 @@ StackDesktop(int desk)
Eprintf(" win=%#10lx parent=%#10lx\n", wl[i], GetWinParent(wl[i]));
}
XRestackWindows(disp, wl, tot);
ShowEdgeWindows();
EdgeWindowsShow();
RaiseProgressbars();
HintsSetClientStacking();

View File

@ -95,13 +95,13 @@ EdgeTimeout(int val, void *data)
}
void
ShowEdgeWindows(void)
EdgeWindowsShow(void)
{
int ax, ay, cx, cy;
if (Conf.edge_flip_resistance <= 0)
{
HideEdgeWindows();
EdgeWindowsHide();
return;
}
@ -146,7 +146,7 @@ ShowEdgeWindows(void)
}
void
HideEdgeWindows(void)
EdgeWindowsHide(void)
{
if (w1)
{

View File

@ -5520,7 +5520,7 @@ IPC_ControlsSet(const char *s, Client * c __UNUSED__)
{
word(s, wd, w);
Conf.edge_flip_resistance = atoi(w);
ShowEdgeWindows();
EdgeWindowsShow();
}
else if (!strcmp(w, "AREA_SIZE:"))
{

View File

@ -1234,7 +1234,7 @@ CB_ConfigureAreas(int val, void *data)
}
else
Conf.edge_flip_resistance = 0;
ShowEdgeWindows();
EdgeWindowsShow();
}
autosave();
data = NULL;

View File

@ -87,7 +87,7 @@ MapUnmap(int start)
}
if (init_win_ext)
XRaiseWindow(disp, init_win_ext);
ShowEdgeWindows();
EdgeWindowsShow();
RaiseProgressbars();
EMapWindow(disp, wlist[i]);
}