[librsvg] write_impl(): Internal function renamed from rsvg_handle_write_impl()



commit 36b42b641f04b206d29e56c5f6588a862de3e344
Author: Federico Mena Quintero <federico gnome org>
Date:   Tue Dec 5 19:46:30 2017 -0600

    write_impl(): Internal function renamed from rsvg_handle_write_impl()

 rsvg-base.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/rsvg-base.c b/rsvg-base.c
index 2841615..22046d9 100644
--- a/rsvg-base.c
+++ b/rsvg-base.c
@@ -1145,7 +1145,7 @@ rsvg_set_error (GError **error, xmlParserCtxtPtr ctxt)
 }
 
 static gboolean
-rsvg_handle_write_impl (RsvgHandle * handle, const guchar * buf, gsize count, GError ** error)
+write_impl (RsvgHandle * handle, const guchar * buf, gsize count, GError ** error)
 {
     GError *real_error = NULL;
     int result;
@@ -1325,7 +1325,7 @@ rsvg_handle_write (RsvgHandle * handle, const guchar * buf, gsize count, GError
                 count--;
             } else {
                 priv->state = RSVG_HANDLE_STATE_READING;
-                return rsvg_handle_write_impl (handle, buf, count, error);
+                return write_impl (handle, buf, count, error);
             }
 
             break;
@@ -1338,7 +1338,7 @@ rsvg_handle_write (RsvgHandle * handle, const guchar * buf, gsize count, GError
                 count--;
             } else {
                 priv->state = RSVG_HANDLE_STATE_READING;
-                return rsvg_handle_write_impl (handle, buf, count, error);
+                return write_impl (handle, buf, count, error);
             }
 
             break;
@@ -1349,7 +1349,7 @@ rsvg_handle_write (RsvgHandle * handle, const guchar * buf, gsize count, GError
             return TRUE;
 
         case RSVG_HANDLE_STATE_READING:
-            return rsvg_handle_write_impl (handle, buf, count, error);
+            return write_impl (handle, buf, count, error);
 
         default:
             g_assert_not_reached ();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]