1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-01 14:39:13 +00:00

Remove deprecated rsvg_handle_get_dimensions, add

rsvg_handle_get_intrinsic_size_in_pixels.
This commit is contained in:
Brenden Matthews 2022-09-10 10:51:38 -05:00
parent f156de5a4f
commit 12452f8896
No known key found for this signature in database
GPG Key ID: B49ABB7270D9D4FD

View File

@ -87,7 +87,9 @@ typedef struct _RsvgRectangle {
const char *rsvg_handle_get_base_uri (RsvgHandle * handle); const char *rsvg_handle_get_base_uri (RsvgHandle * handle);
void rsvg_handle_set_base_uri (RsvgHandle * handle, const char *base_uri); void rsvg_handle_set_base_uri (RsvgHandle * handle, const char *base_uri);
void rsvg_handle_get_dimensions (RsvgHandle * handle, RsvgDimensionData * dimension_data); gboolean rsvg_handle_get_intrinsic_size_in_pixels (RsvgHandle *handle,
gdouble *out_width,
gdouble *out_height);
gboolean rsvg_handle_get_geometry_for_layer(RsvgHandle *handle, gboolean rsvg_handle_get_geometry_for_layer(RsvgHandle *handle,
const char *id, const char *id,