Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2009-02-10 21:01:08 (GMT)
committer Johan Dahlin <johan@src.gnome.org>2009-02-10 21:01:08 (GMT)
commit328524ab5212d0632a8b3405d6e4375db6aba086 (patch)
tree955793b03c01278698fcd54fc20352af8fced2ca
parent66f157b1f7af0d86ed38efbfa3d944154f8b7449 (diff)
Rename namespace to namespace_ to make the header compilable with a C++ compiler
svn path=/trunk/; revision=1094
-rw-r--r--girepository/girepository.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/girepository/girepository.h b/girepository/girepository.h
index ac1b279..7ec8612 100644
--- a/girepository/girepository.h
+++ b/girepository/girepository.h
@@ -83,32 +83,32 @@ const char * g_irepository_load_typelib (GIRepository *repository,
GIRepositoryLoadFlags flags,
GError **error);
gboolean g_irepository_is_registered (GIRepository *repository,
- const gchar *namespace,
+ const gchar *namespace_,
const gchar *version);
GIBaseInfo * g_irepository_find_by_name (GIRepository *repository,
- const gchar *namespace,
+ const gchar *namespace_,
const gchar *name);
GTypelib * g_irepository_require (GIRepository *repository,
- const gchar *namespace,
+ const gchar *namespace_,
const gchar *version,
GIRepositoryLoadFlags flags,
GError **error);
gchar ** g_irepository_get_dependencies (GIRepository *repository,
- const gchar *namespace);
+ const gchar *namespace_);
gchar ** g_irepository_get_loaded_namespaces (GIRepository *repository);
GIBaseInfo * g_irepository_find_by_gtype (GIRepository *repository,
GType gtype);
gint g_irepository_get_n_infos (GIRepository *repository,
- const gchar *namespace);
+ const gchar *namespace_);
GIBaseInfo * g_irepository_get_info (GIRepository *repository,
- const gchar *namespace,
+ const gchar *namespace_,
gint index);
const gchar * g_irepository_get_typelib_path (GIRepository *repository,
- const gchar *namespace);
+ const gchar *namespace_);
const gchar * g_irepository_get_shared_library (GIRepository *repository,
- const gchar *namespace);
+ const gchar *namespace_);
const gchar * g_irepository_get_version (GIRepository *repository,
- const gchar *namespace);
+ const gchar *namespace_);
GOptionGroup * g_irepository_get_option_group (void);