1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-06-18 16:35:24 +02:00

Removed WScreen argument in wIconValidateIconSize

This patch removes the argument WScreen in wIconValidateIconSize,
because is not used.
This commit is contained in:
Rodolfo García Peñas (kix)
2012-07-15 21:25:05 +02:00
committed by Carlos R. Mafra
parent 35a2ed24ec
commit 2e7b7b7e02
3 changed files with 7 additions and 8 deletions
+1 -1
View File
@@ -432,7 +432,7 @@ RImage *get_default_icon_rimage(WScreen *scr, char *file_name, int max_size)
wwarning(_("error loading image file \"%s\": %s"), file_name,
RMessageForError(RErrorCode));
image = wIconValidateIconSize(scr, image, max_size);
image = wIconValidateIconSize(image, max_size);
return image;
}