Cleanup, documentation

This commit is contained in:
Jonas Berlin 2019-12-04 20:59:19 +02:00
parent 87491192cb
commit 667503ef7d

View File

@ -115,6 +115,7 @@ cairo_surface_t *gdk_pixbuf_to_cairo_surface(GdkPixbuf *pixbuf)
* *
* @param w a pointer to the image width, to be modified in-place * @param w a pointer to the image width, to be modified in-place
* @param h a pointer to the image height, to be modified in-place * @param h a pointer to the image height, to be modified in-place
* @return TRUE if the dimensions were updated, FALSE if they were left unchanged
*/ */
static bool icon_size_clamp(int *w, int *h) { static bool icon_size_clamp(int *w, int *h) {
int _w = *w, _h = *h; int _w = *w, _h = *h;
@ -155,8 +156,8 @@ static GdkPixbuf *icon_pixbuf_scale(GdkPixbuf *pixbuf)
int h = gdk_pixbuf_get_height(pixbuf); int h = gdk_pixbuf_get_height(pixbuf);
if (icon_size_clamp(&w, &h)) { if (icon_size_clamp(&w, &h)) {
GdkPixbuf *scaled; GdkPixbuf *scaled = gdk_pixbuf_scale_simple(
scaled = gdk_pixbuf_scale_simple(pixbuf, pixbuf,
w, w,
h, h,
GDK_INTERP_BILINEAR); GDK_INTERP_BILINEAR);