1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-20 04:48:06 +01:00

wIconUpdate removed image argument

The argument image is not used in any call, so can be removed.
This commit is contained in:
Rodolfo García Peñas (kix)
2013-04-08 19:40:46 +02:00
committed by Carlos R. Mafra
parent c24499f6ad
commit 4093d24625
7 changed files with 38 additions and 42 deletions

View File

@@ -472,12 +472,12 @@ void wClientCheckProperty(WWindow * wwin, XPropertyEvent * event)
|| (wwin->wm_hints->flags & IconWindowHint)) {
WApplication *wapp;
if (wwin->flags.miniaturized && wwin->icon) {
wIconUpdate(wwin->icon, NULL);
}
if (wwin->flags.miniaturized && wwin->icon)
wIconUpdate(wwin->icon);
wapp = wApplicationOf(wwin->main_window);
if (wapp && wapp->app_icon) {
wIconUpdate(wapp->app_icon->icon, NULL);
wIconUpdate(wapp->app_icon->icon);
wAppIconPaint(wapp->app_icon);
}
}