From 0392d045b1b4b774467237a229e7585f7ae7451c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 7 Aug 2023 20:13:43 -0400 Subject: [PATCH] io-svg.c: use new gdk_pixbuf_get_from_surface.h; drop gdk/gdk.h --- io-svg.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/io-svg.c b/io-svg.c index a588dcc..95a0812 100644 --- a/io-svg.c +++ b/io-svg.c @@ -1,13 +1,15 @@ #include /* memcpy, memset */ #include -#include #include /* includes glib.h */ #include #include #include #include +/* This "header" includes extra code that we've copy/pasted from GDK */ +#include "gdk_pixbuf_get_from_surface.h" + /* * The width and height of the viewport that we'll render the SVG * into. The final "picture" may not actually be this size; based on -- 2.43.2