[glibmm] Add _IGNORE's for g_iconv().
- From: José Alburquerque <jaalburqu src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glibmm] Add _IGNORE's for g_iconv().
- Date: Wed, 26 May 2010 00:51:35 +0000 (UTC)
commit 04b4853a82d991d4e5848718b37ded7d71e81b82
Author: José Alburquerque <jaalburqu svn gnome org>
Date: Tue May 25 20:49:53 2010 -0400
Add _IGNORE's for g_iconv().
* glib/src/date.hg:
* glib/src/fileutils.hg:
* glib/src/markup.hg:
* glib/src/optionentry.hg:
* glib/src/shell.hg:
* glib/src/spawn.hg:
* glib/src/thread.hg:
* glib/src/unicode.hg:
* glib/src/uriutils.hg: For some reason, gmmproc thinks that g_iconv
should be wrapped in these files so include _IGNORE's so that it is
clear what has not been wrapped yet.
ChangeLog | 18 +++++++++++++++++-
glib/src/date.hg | 4 +++-
glib/src/fileutils.hg | 4 +++-
glib/src/markup.hg | 4 +++-
glib/src/optionentry.hg | 4 +++-
glib/src/shell.hg | 4 +++-
glib/src/spawn.hg | 4 +++-
glib/src/thread.hg | 4 +++-
glib/src/unicode.hg | 4 +++-
glib/src/uriutils.hg | 4 +++-
10 files changed, 44 insertions(+), 10 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index b5b6931..592f1e7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,22 @@
2010-05-25 José Alburquerque <jaalburqu svn gnome org>
- Wrap couple of unwrapped methods.
+ Add _IGNORE's for g_iconv().
+
+ * glib/src/date.hg:
+ * glib/src/fileutils.hg:
+ * glib/src/markup.hg:
+ * glib/src/optionentry.hg:
+ * glib/src/shell.hg:
+ * glib/src/spawn.hg:
+ * glib/src/thread.hg:
+ * glib/src/unicode.hg:
+ * glib/src/uriutils.hg: For some reason, gmmproc thinks that g_iconv
+ should be wrapped in these files so include _IGNORE's so that it is
+ clear what has not been wrapped yet.
+
+2010-05-25 José Alburquerque <jaalburqu svn gnome org>
+
+ Wrap a couple of unwrapped methods.
* gio/src/desktopappinfo.hg: Wrap get_filename().
* glib/src/keyfile.hg: Wrap load_from_dirs().
diff --git a/glib/src/date.hg b/glib/src/date.hg
index d0bf56b..e02aa1f 100644
--- a/glib/src/date.hg
+++ b/glib/src/date.hg
@@ -450,5 +450,7 @@ inline bool operator<=(const Date& lhs, const Date& rhs)
inline bool operator>=(const Date& lhs, const Date& rhs)
{ return (lhs.compare(rhs) >= 0); }
-} // namespace Glib
+// For some reason gmmproc thinks that g_iconv should be wrapped here.
+_IGNORE(g_iconv)
+} // namespace Glib
diff --git a/glib/src/fileutils.hg b/glib/src/fileutils.hg
index 9a541aa..d4188c4 100644
--- a/glib/src/fileutils.hg
+++ b/glib/src/fileutils.hg
@@ -432,5 +432,7 @@ void file_set_contents (const std::string& filename, const gchar *contents, gssi
* */
void file_set_contents (const std::string& filename, const std::string& contents);
-} // namespace Glib
+// For some reason gmmproc thinks that g_iconv should be wrapped here.
+_IGNORE(g_iconv)
+} // namespace Glib
diff --git a/glib/src/markup.hg b/glib/src/markup.hg
index 5aa967f..76a5357 100644
--- a/glib/src/markup.hg
+++ b/glib/src/markup.hg
@@ -337,5 +337,7 @@ private:
} // namespace Markup
-} // namespace Glib
+// For some reason gmmproc thinks that g_iconv should be wrapped here.
+_IGNORE(g_iconv)
+} // namespace Glib
diff --git a/glib/src/optionentry.hg b/glib/src/optionentry.hg
index ae65d44..74d74de 100644
--- a/glib/src/optionentry.hg
+++ b/glib/src/optionentry.hg
@@ -97,5 +97,7 @@ protected:
GOptionEntry* gobject_;
};
-} // namespace Glib
+// For some reason gmmproc thinks that g_iconv should be wrapped here.
+_IGNORE(g_iconv)
+} // namespace Glib
diff --git a/glib/src/shell.hg b/glib/src/shell.hg
index 8db7cd6..232159d 100644
--- a/glib/src/shell.hg
+++ b/glib/src/shell.hg
@@ -87,5 +87,7 @@ std::string shell_unquote(const std::string& quoted_string);
/** @} group ShellUtils */
-} // namespace Glib
+// For some reason gmmproc thinks that g_iconv should be wrapped here.
+_IGNORE(g_iconv)
+} // namespace Glib
diff --git a/glib/src/spawn.hg b/glib/src/spawn.hg
index 4fcbb72..a0af73c 100644
--- a/glib/src/spawn.hg
+++ b/glib/src/spawn.hg
@@ -478,5 +478,7 @@ void spawn_close_pid(Pid pid);
/** @} group Spawn */
-} // namespace Glib
+// For some reason gmmproc thinks that g_iconv should be wrapped here.
+_IGNORE(g_iconv)
+} // namespace Glib
diff --git a/glib/src/thread.hg b/glib/src/thread.hg
index f02a640..708eaf1 100644
--- a/glib/src/thread.hg
+++ b/glib/src/thread.hg
@@ -1051,5 +1051,7 @@ void Private<T>::set(T* data)
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
-} // namespace Glib
+// For some reason gmmproc thinks that g_iconv should be wrapped here.
+_IGNORE(g_iconv)
+} // namespace Glib
diff --git a/glib/src/unicode.hg b/glib/src/unicode.hg
index 8c6446c..0ff69c6 100644
--- a/glib/src/unicode.hg
+++ b/glib/src/unicode.hg
@@ -141,5 +141,7 @@ _ASCII_FUNC(int, xdigit_value)
/** @} group Unicode */
-} // namespace Glib
+// For some reason gmmproc thinks that g_iconv should be wrapped here.
+_IGNORE(g_iconv)
+} // namespace Glib
diff --git a/glib/src/uriutils.hg b/glib/src/uriutils.hg
index 2714979..c6f853a 100644
--- a/glib/src/uriutils.hg
+++ b/glib/src/uriutils.hg
@@ -85,5 +85,7 @@ std::string uri_parse_scheme(const std::string& uri);
*/
std::string uri_escape_string(const std::string& unescaped, const std::string& reserved_chars_allowed = std::string(), bool allow_utf8 = true);
-} // namespace Glib
+// For some reason gmmproc thinks that g_iconv should be wrapped here.
+_IGNORE(g_iconv)
+} // namespace Glib
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]