Remove unused functions, minor whitespace change

This commit is contained in:
Mike Small 2020-11-14 20:38:05 -05:00
parent d7b0dd7bc1
commit 1488571514
1 changed files with 1 additions and 11 deletions

View File

@ -52,7 +52,7 @@ const int icon_pad = 2;
#define iconHeight(w) (BW2 + w->icon_w_height) #define iconHeight(w) (BW2 + w->icon_w_height)
static inline int static inline int
roundUp (int v, int multiple) roundUp(int v, int multiple)
{ {
return ((v + multiple - 1) / multiple) * multiple; return ((v + multiple - 1) / multiple) * multiple;
} }
@ -126,16 +126,6 @@ PlaceIcon(const TwmWindow& win, int def_x, int def_y)
return icon_pos; return icon_pos;
} }
void
IconUp (TwmWindow *win)
{
}
void
IconDown (TwmWindow *win)
{
}
void void
CreateIconWindow(TwmWindow* win, int def_x, int def_y) CreateIconWindow(TwmWindow* win, int def_x, int def_y)
{ {