diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-07-31 15:20:09 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-07-31 15:20:09 +0200 |
commit | 79ca4a64dbd7dcc59b2662d5f996f42700b6021a (patch) | |
tree | 7a61635b117faf079ee10d2f3cd4bbbc943b3559 /glib | |
parent | 2b089793b961549c44d8de562af43cf48a60d95b (diff) | |
download | glibmm-79ca4a64dbd7dcc59b2662d5f996f42700b6021a.tar.gz |
Glib::IOChannel docs: Update names of some enum values
Diffstat (limited to 'glib')
-rw-r--r-- | glib/src/iochannel.hg | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/glib/src/iochannel.hg b/glib/src/iochannel.hg index 1a0036ad..0629376c 100644 --- a/glib/src/iochannel.hg +++ b/glib/src/iochannel.hg @@ -292,10 +292,10 @@ public: _WRAP_METHOD(void set_buffer_size(gsize size), g_io_channel_set_buffer_size) /** Get the current flags for a IOChannel, including read-only - * flags such as Glib::IO_FLAG_IS_READABLE. + * flags such as Glib::IOFlags::IS_READABLE. * - * The values of the flags Glib::IO_FLAG_IS_READABLE and - * Glib::IO_FLAG_IS_WRITEABLE are cached for internal use by the channel when + * The values of the flags Glib::IOFlags::IS_READABLE and + * Glib::IOFlags::IS_WRITEABLE are cached for internal use by the channel when * it is created. If they should change at some later point (e.g. partial * shutdown of a socket with the UNIX <tt>shutdown()</tt> function), the user * should immediately call get_flags() to update the internal values of these @@ -337,7 +337,7 @@ public: /** Returns an IOCondition depending on whether there is data to be * read/space to write data in the internal buffers in the I/O channel. - * Only the flags Glib::IO_IN and Glib::IO_OUT may be set. + * Only the flags Glib::IOCondition::IO_IN and Glib::IOCondition::IO_OUT may be set. * @return Bitwise combination of Glib::IOCondition flags. */ _WRAP_METHOD(IOCondition get_buffer_condition() const, g_io_channel_get_buffer_condition) |