Bill Skaggs <weskaggs@primate.ucdavis.edu>
* configure.in: raise required librsvg version to 2.8.0 * plug-ins/common/svg.c: change deprecated librsvg api, fixes bug #147662.
This commit is contained in:
parent
8d0a6f5cf1
commit
39f3972bee
2 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2005-03-22 Bill Skaggs <weskaggs@primate.ucdavis.edu>
|
||||
|
||||
* configure.in: raise required librsvg version to 2.8.0
|
||||
* plug-ins/common/svg.c: change deprecated librsvg api,
|
||||
fixes bug #147662.
|
||||
|
||||
2005-03-21 Bill Skaggs <weskaggs@primate.ucdavis.edu>
|
||||
|
||||
* plug-ins/common/sparkle.c
|
||||
|
|
|
|||
|
|
@ -434,7 +434,7 @@ load_rsvg_pixbuf (const gchar *filename,
|
|||
|
||||
handle = rsvg_handle_new ();
|
||||
|
||||
rsvg_handle_set_dpi (handle, vals->resolution);
|
||||
rsvg_handle_set_dpi_x_y (handle, vals->resolution, vals->resolution);
|
||||
rsvg_handle_set_size_callback (handle, load_set_size_callback, vals, NULL);
|
||||
|
||||
while (success && status != G_IO_STATUS_EOF)
|
||||
|
|
@ -530,7 +530,7 @@ load_rsvg_size (const gchar *filename,
|
|||
|
||||
handle = rsvg_handle_new ();
|
||||
|
||||
rsvg_handle_set_dpi (handle, vals->resolution);
|
||||
rsvg_handle_set_dpi_x_y (handle, vals->resolution, vals->resolution);
|
||||
rsvg_handle_set_size_callback (handle, load_get_size_callback, vals, NULL);
|
||||
|
||||
while (success && status != G_IO_STATUS_EOF && vals->resolution > 0.0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue