GNOME Bugzilla – Bug 354556
wrap g_get_user_x_dir() functions
Last modified: 2006-09-10 14:41:12 UTC
There are a few miscellaneous utility functions in glib that are unwrapped in glibmm, including: g_get_user_data_dir(), g_get_user_config_dir(), and g_get_user_cache_dir(). This patch wraps these in the Glib namespace. It also changes the reference doc makefile to rebuild the documentation when a header file in glib/glibmm/ is changed, but I can remove this part if desired. Is it ok at add this API or do we have to branch first?
Created attachment 72285 [details] [review] patch to wrap g_get_user_x_dir() functions
*** Bug 354544 has been marked as a duplicate of this bug. ***
Looks good. Feel free to branch glibmm and commit this to HEAD: 1. Let's keep an eye on this change, to be sure that it doesn't force a docs rebuild when building from tarballs: html/index.html: $(doxygen_configfile_source) $(beautify_docs_source) $(top_srcdir)/glib/glibmm/*.h 2. They would be since 2.14, not since 2.12.
> 1. > Let's keep an eye on this change, to be sure that it doesn't force a docs > rebuild when building from tarballs: > html/index.html: $(doxygen_configfile_source) $(beautify_docs_source) > $(top_srcdir)/glib/glibmm/*.h Ahh, good point. I hadn't thought of that. > 2. > They would be since 2.14, not since 2.12. I've branched for 2.12. I'll make that change before committing.
2006-09-05 Jonathon Jongsma <jonathon.jongsma@gmail.com> * docs/reference/Makefile.am: rebuild docs when a .h files changes in glib/glibmm * glib/glibmm/miscutils.cc: * glib/glibmm/miscutils.h: wrap g_get_user_data_dir(), g_get_user_config_dir(), and g_get_user_cache_dir()