diff --git a/src/icon.c b/src/icon.c index 32202fd5..79d82920 100644 --- a/src/icon.c +++ b/src/icon.c @@ -519,10 +519,6 @@ char *wIconStore(WIcon * icon) return path; } -/* -void wIconChangeIconWindow(WIcon *icon, Window new_window); -*/ - static void cycleColor(void *data) { WIcon *icon = (WIcon *) data; @@ -538,16 +534,6 @@ static void cycleColor(void *data) icon->handlerID = WMAddTimerHandler(COLOR_CYCLE_DELAY, cycleColor, icon); } -void wIconSetHighlited(WIcon * icon, Bool flag) -{ - if (icon->highlighted == flag) { - return; - } - - icon->highlighted = flag; - wIconPaint(icon); -} - void wIconSelect(WIcon * icon) { WScreen *scr = icon->core->screen_ptr;