[Telepathy-commits] [telepathy-gabble/master] rename gabble_bytestream_iface_block_read to gabble_bytestream_iface_block_reading

Guillaume Desmottes guillaume.desmottes at collabora.co.uk
Wed Dec 17 04:36:07 PST 2008


---
 src/bytestream-iface.c |    6 +++---
 src/bytestream-iface.h |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/bytestream-iface.c b/src/bytestream-iface.c
index 482ba8a..f35d503 100644
--- a/src/bytestream-iface.c
+++ b/src/bytestream-iface.c
@@ -162,11 +162,11 @@ gabble_bytestream_iface_base_init (gpointer klass)
 }
 
 void
-gabble_bytestream_iface_block_read (GabbleBytestreamIface *self,
-                                    gboolean block)
+gabble_bytestream_iface_block_reading (GabbleBytestreamIface *self,
+                                       gboolean block)
 {
   void (*virtual_method)(GabbleBytestreamIface *, gboolean) =
-    GABBLE_BYTESTREAM_IFACE_GET_CLASS (self)->block_read;
+    GABBLE_BYTESTREAM_IFACE_GET_CLASS (self)->block_reading;
   if (virtual_method != NULL)
     virtual_method (self, block);
   /* else: do nothing. Some bytestreams like IBB can't implement read_block. */
diff --git a/src/bytestream-iface.h b/src/bytestream-iface.h
index 2346bd6..a55f7d7 100644
--- a/src/bytestream-iface.h
+++ b/src/bytestream-iface.h
@@ -56,7 +56,7 @@ struct _GabbleBytestreamIfaceClass {
   void (*close) (GabbleBytestreamIface *bytestream, GError *error);
   void (*accept) (GabbleBytestreamIface *bytestream,
       GabbleBytestreamAugmentSiAcceptReply func, gpointer user_data);
-  void (*block_read) (GabbleBytestreamIface *bytestream, gboolean block);
+  void (*block_reading) (GabbleBytestreamIface *bytestream, gboolean block);
 };
 
 GType gabble_bytestream_iface_get_type (void);
@@ -84,7 +84,7 @@ void gabble_bytestream_iface_close (GabbleBytestreamIface *bytestream,
 void gabble_bytestream_iface_accept (GabbleBytestreamIface *bytestream,
     GabbleBytestreamAugmentSiAcceptReply func, gpointer user_data);
 
-void gabble_bytestream_iface_block_read (GabbleBytestreamIface *bytestream,
+void gabble_bytestream_iface_block_reading (GabbleBytestreamIface *bytestream,
     gboolean block);
 
 G_END_DECLS
-- 
1.5.6.5




More information about the Telepathy-commits mailing list