From ce4e11143f982234be1076e384b31228f1cc84ae Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Wed, 31 Jul 2013 22:54:01 -0700 Subject: Make more functions static that aren't called from other files Signed-off-by: Alan Coopersmith --- src/iconmgr.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/iconmgr.c') diff --git a/src/iconmgr.c b/src/iconmgr.c index 29c3c16..78e88b3 100644 --- a/src/iconmgr.c +++ b/src/iconmgr.c @@ -42,6 +42,8 @@ in this Software without prior written authorization from The Open Group. #include #include +static void InsertInIconManager ( IconMgr *ip, WList *tmp, TwmWindow *tmp_win ); + int iconmgr_textx = siconify_width+11; static WList *Active = NULL; WList *DownIconManager = NULL; @@ -451,7 +453,7 @@ WList *AddIconManager(TwmWindow *tmp_win) * \param ip the icon manager pointer * \param tmp the entry to insert */ -void InsertInIconManager(IconMgr *ip, WList *tmp, TwmWindow *tmp_win) +static void InsertInIconManager(IconMgr *ip, WList *tmp, TwmWindow *tmp_win) { WList *tmp1; int added; @@ -493,7 +495,7 @@ void InsertInIconManager(IconMgr *ip, WList *tmp, TwmWindow *tmp_win) } } -void RemoveFromIconManager(IconMgr *ip, WList *tmp) +static void RemoveFromIconManager(IconMgr *ip, WList *tmp) { if (tmp->prev == NULL) ip->first = tmp->next; -- cgit v1.2.3