1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-23 14:42:29 +01:00

Changed get_default_icon_rimage function name

The function get_default_icon_rimage name is not correct, because
the function doesn't return the default icon rimage, returns the
rimage from a file name. So the correct function name should be
get_rimage_from_file.
This commit is contained in:
Rodolfo García Peñas (kix)
2012-10-24 00:00:00 +02:00
committed by Carlos R. Mafra
parent b8025ee899
commit 206fe5e821
3 changed files with 5 additions and 5 deletions

View File

@@ -142,7 +142,7 @@ WIcon *icon_create_for_wwindow(WWindow *wwin)
file = get_default_icon_filename(scr, wwin->wm_instance, wwin->wm_class, NULL, True);
if (file) {
icon->file = wstrdup(file);
icon->file_image = get_default_icon_rimage(scr, icon->file, wPreferences.icon_size);
icon->file_image = get_rimage_from_file(scr, icon->file, wPreferences.icon_size);
wfree(file);
}
@@ -167,7 +167,7 @@ WIcon *icon_create_for_dock(WScreen *scr, char *command, char *wm_instance, char
file = get_default_icon_filename(scr, wm_instance, wm_class, command, False);
if (file) {
icon->file = wstrdup(file);
icon->file_image = get_default_icon_rimage(scr, icon->file, wPreferences.icon_size);
icon->file_image = get_rimage_from_file(scr, icon->file, wPreferences.icon_size);
wfree(file);
}