summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2018-03-20 20:16:40 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2018-03-20 20:16:40 +0100
commitc77a594c20a5968bfaedcbccf4834c4612526d98 (patch)
treec97071b591af119efe4360a0f2455c1941d9a18a
parent07c1b97b4b8a712f5b1206e4cc2a70183a20b9aa (diff)
downloadglibmm-c77a594c20a5968bfaedcbccf4834c4612526d98.tar.gz
Glib::Module: Remove obsolete _IGNORE() directives
-rw-r--r--glib/src/module.hg3
1 files changed, 1 insertions, 2 deletions
diff --git a/glib/src/module.hg b/glib/src/module.hg
index d1af3bb6..ecfb2020 100644
--- a/glib/src/module.hg
+++ b/glib/src/module.hg
@@ -40,7 +40,7 @@ _WRAP_ENUM(ModuleFlags, GModuleFlags, NO_GTYPE)
class Module
{
_CLASS_GENERIC(Module, GModule)
- _IGNORE(g_module_open, g_module_open_utf8, g_module_close)
+ _IGNORE(g_module_open, g_module_close)
public:
@@ -111,7 +111,6 @@ public:
* @returns The name of the module
*/
_WRAP_METHOD(std::string get_name() const, g_module_name)
- _IGNORE(g_module_name_utf8)
/** A portable way to build the filename of a module. The
* platform-specific prefix and suffix are added to the filename, if