diff --git a/src/appicon.c b/src/appicon.c index c2707a85..d776ce41 100644 --- a/src/appicon.c +++ b/src/appicon.c @@ -396,20 +396,21 @@ void wAppIconPaint(WAppIcon * aicon) 0, 0, wPreferences.icon_size, wPreferences.icon_size); } -Bool wAppIconSave(WAppIcon *aicon) +void wAppIconSave(WAppIcon *aicon) { char *path; - if (!aicon->docked || aicon->attracted) return True; + if (!aicon->docked || aicon->attracted) + return; path = wIconStore(aicon->icon); if (!path) - return False; + return; wApplicationSaveIconPathFor(path, aicon->wm_instance, aicon->wm_class); wfree(path); - return True; + return; } #define canBeDocked(wwin) ((wwin) && ((wwin)->wm_class||(wwin)->wm_instance)) diff --git a/src/appicon.h b/src/appicon.h index b9e96364..1f0eb7cd 100644 --- a/src/appicon.h +++ b/src/appicon.h @@ -70,8 +70,8 @@ typedef struct WAppIcon { } WAppIcon; WAppIcon *wAppIconCreate(WWindow *leader_win); -WAppIcon * wAppIconCreateForDock(WScreen *scr, char *command, char *wm_instance, - char *wm_class, int tile); +WAppIcon *wAppIconCreateForDock(WScreen *scr, char *command, char *wm_instance, + char *wm_class, int tile); void wAppIconDestroy(WAppIcon *aicon); void wAppIconPaint(WAppIcon *aicon); @@ -84,7 +84,5 @@ void wApplicationSaveIconPathFor(char *iconPath, char *wm_instance, char *wm_class); void wApplicationExtractDirPackIcon(WScreen *scr,char *path, char *wm_instance, char *wm_class); - -Bool wAppIconChangeImage(WAppIcon *icon, char *file); -Bool wAppIconSave(WAppIcon *aicon); +void wAppIconSave(WAppIcon *aicon); #endif