glibmm r526 - in trunk: . gio/src



Author: murrayc
Date: Sun Jan 20 03:00:25 2008
New Revision: 526
URL: http://svn.gnome.org/viewvc/glibmm?rev=526&view=rev

Log:
2008-01-20  Murray Cumming  <murrayc murrayc com>

* gio/src/inputstream.hg: Ignore g_input_stream_clear_pending() as well as 
the other implementation functions.
* gio/src/outputstream.hg: Ignore the equivalent functions here, 
assuming that they are also only for implementations.

Modified:
   trunk/ChangeLog
   trunk/gio/src/inputstream.hg
   trunk/gio/src/outputstream.hg

Modified: trunk/gio/src/inputstream.hg
==============================================================================
--- trunk/gio/src/inputstream.hg	(original)
+++ trunk/gio/src/inputstream.hg	Sun Jan 20 03:00:25 2008
@@ -82,9 +82,7 @@
                errthrow)
 
   // These are private inside the module (for implementations)
-  _IGNORE(g_input_stream_has_pending,
-          g_input_stream_is_closed,
-          g_input_stream_set_pending)
+  _IGNORE(g_input_stream_has_pending, g_input_stream_is_closed, g_input_stream_set_pending, g_input_stream_clear_pending)
 };
 
 } // namespace Gio

Modified: trunk/gio/src/outputstream.hg
==============================================================================
--- trunk/gio/src/outputstream.hg	(original)
+++ trunk/gio/src/outputstream.hg	Sun Jan 20 03:00:25 2008
@@ -96,10 +96,8 @@
                g_output_stream_close_finish,
                errthrow)
 
-  _WRAP_METHOD(bool is_closed() const, g_output_stream_is_closed)
-  _WRAP_METHOD(bool has_pending() const, g_output_stream_has_pending)
-
-  //TODO: _WRAP_METHOD(bool set_pending(), g_output_stream_set_pending, errthrow)
+  // These are private inside the module (for implementations)
+  _IGNORE(g_output_stream_has_pending, g_output_stream_is_closed, g_output_stream_set_pending, g_output_stream_clear_pending)
 
   //TODO: vfuncs and overloads without Cancellable
 };



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