[anjuta] libanjuta: bgo #696984 - Add missing % in constants NULL, TRUE and FALSE in documentation comments
- From: Sebastien Granjoux <sgranjoux src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [anjuta] libanjuta: bgo #696984 - Add missing % in constants NULL, TRUE and FALSE in documentation comments
- Date: Mon, 1 Apr 2013 08:25:46 +0000 (UTC)
commit 5789e161af9f414a5f23b656fbd8d204b37c7a24
Author: Arnel A. Borja <kyoushuu yahoo com>
Date: Fri Mar 29 20:28:42 2013 +0800
libanjuta: bgo #696984 - Add missing % in constants NULL, TRUE and FALSE in documentation comments
libanjuta/anjuta-c-module.c | 2 +-
libanjuta/anjuta-language-provider.c | 10 +++++-----
libanjuta/anjuta-launcher.c | 14 +++++++-------
libanjuta/anjuta-pkg-config.c | 2 +-
libanjuta/anjuta-plugin-description.c | 14 +++++++-------
libanjuta/anjuta-plugin-manager.c | 6 +++---
libanjuta/anjuta-plugin.c | 10 +++++-----
libanjuta/anjuta-preferences.c | 2 +-
libanjuta/anjuta-profile-manager.c | 6 +++---
libanjuta/anjuta-profile.c | 8 ++++----
libanjuta/anjuta-shell.c | 15 ++++++++-------
libanjuta/anjuta-tabber.c | 2 +-
libanjuta/anjuta-token-file.c | 2 +-
libanjuta/anjuta-token-list.c | 2 +-
libanjuta/anjuta-utils.c | 24 ++++++++++++------------
15 files changed, 60 insertions(+), 59 deletions(-)
---
diff --git a/libanjuta/anjuta-c-module.c b/libanjuta/anjuta-c-module.c
index 31e85a7..12eb26c 100644
--- a/libanjuta/anjuta-c-module.c
+++ b/libanjuta/anjuta-c-module.c
@@ -195,7 +195,7 @@ anjuta_c_module_init (AnjutaCModule *module)
*
* Receives the error that occured when the module was loaded
*
- * Returns: TRUE if there was an Error, FALSE otherwise
+ * Returns: %TRUE if there was an Error, %FALSE otherwise
*/
gboolean
anjuta_c_module_get_last_error (AnjutaCModule *module, GError** err)
diff --git a/libanjuta/anjuta-language-provider.c b/libanjuta/anjuta-language-provider.c
index b7791e1..c4ab547 100644
--- a/libanjuta/anjuta-language-provider.c
+++ b/libanjuta/anjuta-language-provider.c
@@ -111,7 +111,7 @@ anjuta_language_provider_class_init (AnjutaLanguageProviderClass *klass)
* @iter: (type GObject): Iter to start searching at
*
* Returns: (type GObject): The position of the brace, if the next non-whitespace character is a
- * opening brace, NULL otherwise
+ * opening brace, %NULL otherwise
*/
static IAnjutaIterable*
anjuta_language_provider_find_next_brace (IAnjutaIterable* iter)
@@ -135,8 +135,8 @@ anjuta_language_provider_find_next_brace (IAnjutaIterable* iter)
* anjuta_language_provider_find_whitespace:
* @iter: (type GObject): Iter to start searching at
*
- * Returns: TRUE if the next character is a whitespace character,
- * FALSE otherwise
+ * Returns: %TRUE if the next character is a whitespace character,
+ * %FALSE otherwise
*/
static gboolean
anjuta_language_provider_find_whitespace (IAnjutaIterable* iter)
@@ -246,7 +246,7 @@ anjuta_language_provider_get_scope_context (IAnjutaEditor* editor,
*
* Searches for a calltip context
*
- * Returns: name of the method to show a calltip for or NULL
+ * Returns: name of the method to show a calltip for or %NULL
*/
gchar*
anjuta_language_provider_get_calltip_context (AnjutaLanguageProvider* lang_prov,
@@ -352,7 +352,7 @@ anjuta_language_provider_get_pre_word (AnjutaLanguageProvider* lang_prov,
* Creates a calltip if there is something to show a tip for
* Calltips are queried async
*
- * Returns: TRUE if a calltips was queried, FALSE otherwise
+ * Returns: %TRUE if a calltips was queried, %FALSE otherwise
*/
static gboolean
anjuta_language_provider_calltip (AnjutaLanguageProvider* lang_prov,
diff --git a/libanjuta/anjuta-launcher.c b/libanjuta/anjuta-launcher.c
index 302fc99..f91d1ce 100644
--- a/libanjuta/anjuta-launcher.c
+++ b/libanjuta/anjuta-launcher.c
@@ -321,11 +321,11 @@ anjuta_launcher_class_init (AnjutaLauncherClass * klass)
/**
* AnjutaLauncher::busy:
* @launcher: a #AnjutaLancher object.
- * @busy: TRUE is a child is currently running
+ * @busy: %TRUE is a child is currently running
*
* Emitted when a child starts after a call to one execute function
- * (busy is TRUE) or when a child exits and all i/o channels are
- * closed (busy is FALSE).
+ * (busy is %TRUE) or when a child exits and all i/o channels are
+ * closed (busy is %FALSE).
**/
launcher_signals[BUSY_SIGNAL] =
g_signal_new ("busy",
@@ -355,7 +355,7 @@ anjuta_launcher_init (AnjutaLauncher * obj)
*
* Tells if the laucher is currently executing any command.
*
- * Return value: TRUE if launcher is busy, otherwisee FALSE.
+ * Return value: %TRUE if launcher is busy, otherwise %FALSE.
*/
gboolean
anjuta_launcher_is_busy (AnjutaLauncher *launcher)
@@ -1247,7 +1247,7 @@ anjuta_launcher_fork (AnjutaLauncher *launcher, const gchar *dir, gchar *const a
/**
* anjuta_launcher_execute_v:
* @launcher: a #AnjutaLancher object.
- * @dir: Working directory or NULL.
+ * @dir: Working directory or %NULL.
* @argv: Command args.
* @envp: Additional environment variable.
* @callback: The callback for delivering output from the process.
@@ -1256,7 +1256,7 @@ anjuta_launcher_fork (AnjutaLauncher *launcher, const gchar *dir, gchar *const a
* The first of the @args is the command itself. The rest are sent to the
* as it's arguments. This function works similar to anjuta_launcher_execute().
*
- * Return value: TRUE if successfully launched, otherwise FALSE.
+ * Return value: %TRUE if successfully launched, otherwise %FALSE.
*/
gboolean
anjuta_launcher_execute_v (AnjutaLauncher *launcher, gchar *const dir,
@@ -1301,7 +1301,7 @@ anjuta_launcher_execute_v (AnjutaLauncher *launcher, gchar *const dir,
* it. Please note that not all formats of the password are recognized. Those
* with the standard 'assword:' substring in the prompt should work well.
*
- * Return value: TRUE if successfully launched, otherwise FALSE.
+ * Return value: %TRUE if successfully launched, otherwise %FALSE.
*/
gboolean
anjuta_launcher_execute (AnjutaLauncher *launcher, const gchar *command_str,
diff --git a/libanjuta/anjuta-pkg-config.c b/libanjuta/anjuta-pkg-config.c
index 4e46424..2dd17a4 100644
--- a/libanjuta/anjuta-pkg-config.c
+++ b/libanjuta/anjuta-pkg-config.c
@@ -152,7 +152,7 @@ anjuta_pkg_config_ignore_package (const gchar* name)
*
* This does sync io, call from a thread if necessary
*
- * Returns: (transfer full) the version of the package or NULL
+ * Returns: (transfer full) the version of the package or %NULL
*/
gchar* anjuta_pkg_config_get_version (const gchar* package)
{
diff --git a/libanjuta/anjuta-plugin-description.c b/libanjuta/anjuta-plugin-description.c
index 50370ef..5d9df5c 100644
--- a/libanjuta/anjuta-plugin-description.c
+++ b/libanjuta/anjuta-plugin-description.c
@@ -748,7 +748,7 @@ lookup_line (AnjutaPluginDescription *df,
* Retrieves the value of a key (in the given section) for the given locale.
* The value returned in @val must be freed after use.
*
- * Return value: TRUE if sucessful, otherwise FALSE.
+ * Return value: %TRUE if sucessful, otherwise %FALSE.
*/
gboolean
anjuta_plugin_description_get_raw (AnjutaPluginDescription *df,
@@ -813,8 +813,8 @@ anjuta_plugin_description_foreach_section (AnjutaPluginDescription *df,
* @user_data: User data to pass to @func.
*
* Calls @func for each of the keys in the given section. @include_localized,
- * if set to TRUE will make it call @func for the localized keys also, otherwise
- * only one call is made for the key in current locale.
+ * if set to %TRUE will make it call @func for the localized keys also,
+ * otherwise only one call is made for the key in current locale.
*/
void
anjuta_plugin_description_foreach_key (AnjutaPluginDescription *df,
@@ -884,7 +884,7 @@ calculate_locale (AnjutaPluginDescription *df)
*
* Returns the value of key in the given section in current locale.
*
- * Return value: TRUE if sucessful, otherwise FALSE.
+ * Return value: %TRUE if sucessful, otherwise %FALSE.
*/
gboolean
anjuta_plugin_description_get_locale_string (AnjutaPluginDescription *df,
@@ -925,7 +925,7 @@ anjuta_plugin_description_get_locale_string (AnjutaPluginDescription *df,
*
* Returns the value of key in the given section.
*
- * Return value: TRUE if sucessful, otherwise FALSE.
+ * Return value: %TRUE if sucessful, otherwise %FALSE.
*/
gboolean
anjuta_plugin_description_get_string (AnjutaPluginDescription *df,
@@ -945,7 +945,7 @@ anjuta_plugin_description_get_string (AnjutaPluginDescription *df,
*
* Returns the value of key as integer in the given section.
*
- * Return value: TRUE if sucessful, otherwise FALSE.
+ * Return value: %TRUE if sucessful, otherwise %FALSE.
*/
gboolean
anjuta_plugin_description_get_integer (AnjutaPluginDescription *df,
@@ -979,7 +979,7 @@ anjuta_plugin_description_get_integer (AnjutaPluginDescription *df,
*
* Returns the value of key as boolean in the given section.
*
- * Return value: TRUE if sucessful, otherwise FALSE.
+ * Return value: %TRUE if sucessful, otherwise %FALSE.
*/
gboolean
anjuta_plugin_description_get_boolean (AnjutaPluginDescription *df,
diff --git a/libanjuta/anjuta-plugin-manager.c b/libanjuta/anjuta-plugin-manager.c
index de72cdb..46195b1 100644
--- a/libanjuta/anjuta-plugin-manager.c
+++ b/libanjuta/anjuta-plugin-manager.c
@@ -1404,7 +1404,7 @@ on_is_active_plugins_foreach (gpointer key, gpointer data, gpointer user_data)
* Searches if a currently loaded plugins implements
* the given interface.
*
- * Return value: True is the plugin is currently loaded.
+ * Return value: %TRUE is the plugin is currently loaded.
*/
gboolean
@@ -1442,10 +1442,10 @@ anjuta_plugin_manager_is_active_plugin (AnjutaPluginManager *plugin_manager,
* </programlisting>
* Notice that this function takes the interface name string as string, unlike
* anjuta_plugins_get_interface() which takes the type directly.
- * If no plugin implementing this interface can be found, returns NULL.
+ * If no plugin implementing this interface can be found, returns %NULL.
*
* Return value: The plugin object (subclass of #AnjutaPlugin) which implements
- * the given interface or NULL. See #AnjutaPlugin for more detail on interfaces
+ * the given interface or %NULL. See #AnjutaPlugin for more detail on interfaces
* implemented by plugins.
*/
GObject *
diff --git a/libanjuta/anjuta-plugin.c b/libanjuta/anjuta-plugin.c
index c0ea66c..1e039a0 100644
--- a/libanjuta/anjuta-plugin.c
+++ b/libanjuta/anjuta-plugin.c
@@ -105,7 +105,7 @@
* <para>
* Query the shell for a plugin implemeting the primary interface
* using anjuta_shell_get_interface(). It will return an
- * implemetation of the interface (or NULL if not found).
+ * implemetation of the interface (or %NULL if not found).
* Do not save this object for longer use, because the implementor
* plugin can change anytime and a different plugin implementing
* the same primary interface may be activated.
@@ -513,7 +513,7 @@ anjuta_plugin_remove_watch (AnjutaPlugin *plugin, guint id,
* If the plugin implements IAnjutaPreferences, it is prompted to install
* it's preferences.
*
- * Return value: TRUE if sucessfully activated, FALSE otherwise.
+ * Return value: %TRUE if sucessfully activated, %FALSE otherwise.
*/
gboolean
anjuta_plugin_activate (AnjutaPlugin *plugin)
@@ -543,7 +543,7 @@ anjuta_plugin_activate (AnjutaPlugin *plugin)
* should derive their classes from this virtual class and implement this
* method.
*
- * Return value: TRUE if sucessfully activated, FALSE otherwise.
+ * Return value: %TRUE if sucessfully activated, %FALSE otherwise.
*/
gboolean
anjuta_plugin_deactivate (AnjutaPlugin *plugin)
@@ -569,9 +569,9 @@ anjuta_plugin_deactivate (AnjutaPlugin *plugin)
* anjuta_plugin_is_active:
* @plugin: a #AnjutaPlugin derived class object.
*
- * Returns TRUE if the plugin has been activated.
+ * Returns %TRUE if the plugin has been activated.
*
- * Return value: TRUE if activated, FALSE otherwise.
+ * Return value: %TRUE if activated, %FALSE otherwise.
*/
gboolean
anjuta_plugin_is_active (AnjutaPlugin *plugin)
diff --git a/libanjuta/anjuta-preferences.c b/libanjuta/anjuta-preferences.c
index 5e26c0d..fc94b41 100644
--- a/libanjuta/anjuta-preferences.c
+++ b/libanjuta/anjuta-preferences.c
@@ -137,7 +137,7 @@ update_file_property (GtkWidget* widget, gpointer user_data)
* The widget needs to fulfill the properties described in
* #anjuta_preferences_add_page documentation.
*
- * Return value: TRUE if sucessful.
+ * Return value: %TRUE if sucessful.
*/
gboolean
anjuta_preferences_register_property (AnjutaPreferences *pr,
diff --git a/libanjuta/anjuta-profile-manager.c b/libanjuta/anjuta-profile-manager.c
index 4b21e55..5be4dee 100644
--- a/libanjuta/anjuta-profile-manager.c
+++ b/libanjuta/anjuta-profile-manager.c
@@ -492,7 +492,7 @@ anjuta_profile_manager_queue_profile (AnjutaProfileManager *profile_manager,
* manager is not frozen, this new profile will be loaded immediatly and
* become the current profile.
*
- * Return value: TRUE on success, FALSE otherwise.
+ * Return value: %TRUE on success, %FALSE otherwise.
*/
gboolean
anjuta_profile_manager_push (AnjutaProfileManager *profile_manager,
@@ -520,7 +520,7 @@ anjuta_profile_manager_push (AnjutaProfileManager *profile_manager,
* If the manager is frozen, the current profile or the last pushed profile
* can be removed.
*
- * Return value: TRUE on success, FALSE otherwise.
+ * Return value: %TRUE on success, %FALSE otherwise.
*/
gboolean
anjuta_profile_manager_pop (AnjutaProfileManager *profile_manager,
@@ -606,7 +606,7 @@ anjuta_profile_manager_freeze (AnjutaProfileManager *profile_manager)
* anjuta_profile_manager_freeze(). It will load a new profile if one has been
* added while the manager was frozen.
*
- * Return value: TRUE on success, FALSE otherwise.
+ * Return value: %TRUE on success, %FALSE otherwise.
*/
gboolean
anjuta_profile_manager_thaw (AnjutaProfileManager *profile_manager,
diff --git a/libanjuta/anjuta-profile.c b/libanjuta/anjuta-profile.c
index 4e60eb2..2b0d82d 100644
--- a/libanjuta/anjuta-profile.c
+++ b/libanjuta/anjuta-profile.c
@@ -452,7 +452,7 @@ anjuta_profile_remove_plugin (AnjutaProfile *profile,
*
* Check if a plugin is included in the profile plugin list.
*
- * Return value: TRUE if the plugin is included in the list.
+ * Return value: %TRUE if the plugin is included in the list.
*/
gboolean
anjuta_profile_has_plugin (AnjutaProfile *profile,
@@ -725,12 +725,12 @@ anjuta_profile_read_plugins_from_xml (AnjutaProfile *profile,
* anjuta_profile_add_plugins_from_xml:
* @profile: a #AnjutaProfile object.
* @profile_xml_file: xml file containing plugin list.
- * @exclude_from_sync: TRUE if these plugins shouldn't be saved in user session.
+ * @exclude_from_sync: %TRUE if these plugins shouldn't be saved in user session.
* @error: error propagation and reporting.
*
* Add all plugins inscribed in the xml file into the profile plugin list.
*
- * Return value: TRUE on success, FALSE otherwise.
+ * Return value: %TRUE on success, %FALSE otherwise.
*/
gboolean
anjuta_profile_add_plugins_from_xml (AnjutaProfile *profile,
@@ -882,7 +882,7 @@ anjuta_profile_set_sync_file (AnjutaProfile *profile, GFile *sync_file)
*
* Save the current plugins list in the xml file set with anjuta_profile_set_sync_file().
*
- * Return value: TRUE on success, FALSE otherwise.
+ * Return value: %TRUE on success, %FALSE otherwise.
*/
gboolean
anjuta_profile_sync (AnjutaProfile *profile, GError **error)
diff --git a/libanjuta/anjuta-shell.c b/libanjuta/anjuta-shell.c
index e9086c9..2e4002d 100644
--- a/libanjuta/anjuta-shell.c
+++ b/libanjuta/anjuta-shell.c
@@ -592,11 +592,11 @@ anjuta_shell_add_valist (AnjutaShell *shell,
* @shell: A #AnjutaShell interface
* @first_name: First value name
* @first_type: First value type
- * @...: First value, Second value name, Second value type .... NULL
+ * @...: First value, Second value name, Second value type .... %NULL
*
- * Adds a list of values in the shell. The list should be NULL terminated
+ * Adds a list of values in the shell. The list should be %NULL terminated
* and should be in the order - name1, type1, value1, name2, type2, value2,
- * ..., NULL. "value_added" signal will be emitted for each of the value.
+ * ..., %NULL. "value_added" signal will be emitted for each of the value.
*/
void
anjuta_shell_add (AnjutaShell *shell,
@@ -702,11 +702,11 @@ anjuta_shell_get_valist (AnjutaShell *shell,
* @shell: A #AnjutaShell interface
* @first_name: First value name
* @first_type: First value type
- * @...: First value holder, Second value name, Second value type .... NULL
+ * @...: First value holder, Second value name, Second value type .... %NULL
*
- * Gets a list of values in the shell. The list should be NULL terminated
+ * Gets a list of values in the shell. The list should be %NULL terminated
* and should be in the order - name1, type1, value1, name2, type2, value2,
- * ..., NULL.
+ * ..., %NULL.
*/
void
anjuta_shell_get (AnjutaShell *shell,
@@ -770,7 +770,8 @@ anjuta_shell_remove_value (AnjutaShell *shell,
* Notice that this function takes the interface name string as string, unlike
* anjuta_plugins_get_interface() which takes the type directly.
*
- * Return value: (transfer none): A plugin object implementing the primary interface or NULL.
+ * Return value: (transfer none): A plugin object implementing the primary
+ * interface or %NULL.
*/
GObject*
anjuta_shell_get_object (AnjutaShell *shell, const gchar *iface_name,
diff --git a/libanjuta/anjuta-tabber.c b/libanjuta/anjuta-tabber.c
index 0e188d8..0ba7f34 100644
--- a/libanjuta/anjuta-tabber.c
+++ b/libanjuta/anjuta-tabber.c
@@ -530,7 +530,7 @@ anjuta_tabber_draw (GtkWidget* widget, cairo_t* cr)
* @x: return location for x coordinate
* @y: return location for y coordinate
*
- * Returns: TRUE if coordinates were set, FALSE otherwise
+ * Returns: %TRUE if coordinates were set, %FALSE otherwise
*/
static gboolean
anjuta_tabber_get_widget_coordinates (GtkWidget *widget,
diff --git a/libanjuta/anjuta-token-file.c b/libanjuta/anjuta-token-file.c
index c39e3ed..ce8e51f 100644
--- a/libanjuta/anjuta-token-file.c
+++ b/libanjuta/anjuta-token-file.c
@@ -251,7 +251,7 @@ anjuta_token_file_remove_token (AnjutaTokenFile *file, AnjutaToken *token)
* Update the file with all changed token starting from @token. The function can
* return an error if the token is not in the file.
*
- * Return value: TRUE is the update is done without error.
+ * Return value: %TRUE is the update is done without error.
*/
gboolean
anjuta_token_file_update (AnjutaTokenFile *file, AnjutaToken *token)
diff --git a/libanjuta/anjuta-token-list.c b/libanjuta/anjuta-token-list.c
index c80214b..f88dddf 100644
--- a/libanjuta/anjuta-token-list.c
+++ b/libanjuta/anjuta-token-list.c
@@ -331,7 +331,7 @@ anjuta_token_style_format (AnjutaTokenStyle *style, AnjutaToken *list)
* Get the first word of the list. A word is an item in the list which is not
* a space or a separator.
*
- * Return value: A #AnjutaToken representing the first word or NULL.
+ * Return value: A #AnjutaToken representing the first word or %NULL.
*/
AnjutaToken *
anjuta_token_first_word (AnjutaToken *list)
diff --git a/libanjuta/anjuta-utils.c b/libanjuta/anjuta-utils.c
index cd36b65..cff1188 100644
--- a/libanjuta/anjuta-utils.c
+++ b/libanjuta/anjuta-utils.c
@@ -108,11 +108,11 @@ anjuta_util_from_file_to_file (GInputStream *istream,
* anjuta_util_copy_file:
* @src: the file where copy
* @dest: the path to copy the @src
- * @show_error: TRUE to show a dialog error
+ * @show_error: %TRUE to show a dialog error
*
* Copies @src to @dest and shows a dialog error in case is needed.
*
- * Returns: TRUE if there was an error copying the file.
+ * Returns: %TRUE if there was an error copying the file.
*/
gboolean
anjuta_util_copy_file (const gchar * src, const gchar * dest, gboolean show_error)
@@ -1520,12 +1520,12 @@ gboolean anjuta_util_diff(const gchar* uri, const gchar* text)
* anjuta_util_is_project_file:
* @filename: the file name
*
- * Return TRUE if the file is an anjuta project file. It is implemented by
+ * Return %TRUE if the file is an anjuta project file. It is implemented by
* checking only the file extension. So it does not check the existence
* of the file. But it is working on an URI if it does not containt a
* fragment.
*
- * Returns: TRUE if the file is a project file, else FALSE
+ * Returns: %TRUE if the file is a project file, else %FALSE
*/
gboolean
anjuta_util_is_project_file (const gchar *filename)
@@ -1538,12 +1538,12 @@ anjuta_util_is_project_file (const gchar *filename)
* anjuta_util_is_template_file:
* @filename: the file name
*
- * Return TRUE if the file is an template project file. It is implemented by
+ * Return %TRUE if the file is an template project file. It is implemented by
* checking only the file extension. So it does not check the existence
* of the file. But it is working on an URI if it does not containt a
* fragment.
*
- * Returns: TRUE if the file is a template file, else FALSE
+ * Returns: %TRUE if the file is a template file, else %FALSE
*/
gboolean
anjuta_util_is_template_file (const gchar *filename)
@@ -2364,10 +2364,10 @@ anjuta_util_convert_gfile_list_to_relative_path_list (GList *list,
/**
* anjuta_util_builder_new:
* @filename: Builder file name to open
- * @error: Optional error object, if NULL display a dialog if the file is missing
+ * @error: Optional error object, if %NULL display a dialog if the file is missing
*
* Create a new GtkBuilder object and load the file in it. Display an error
- * if the file is missing. Use a dialog if error is NULL, just a warning
+ * if the file is missing. Use a dialog if error is %NULL, just a warning
* if the error can be reported.
*
* Returns: The new GtkBuilder object
@@ -2411,13 +2411,13 @@ anjuta_util_builder_new (const gchar *filename, GError **error)
* @builder: Builder object
* @first_widget: Name of first widget to get
* ...: Address to store the first widget pointer, followed optionally by
- * more name/pointer pairs, followed by NULL
+ * more name/pointer pairs, followed by %NULL
*
* Create a new GtkBuilder object and load the file in it. Display an error
- * if the file is missing. Use a dialog if error is NULL, just a warning
+ * if the file is missing. Use a dialog if error is %NULL, just a warning
* if the error can be reported.
*
- * Returns: TRUE is everything works as expected.
+ * Returns: %TRUE is everything works as expected.
*/
gboolean
anjuta_util_builder_get_objects (GtkBuilder *builder, const gchar *first_widget,...)
@@ -2499,7 +2499,7 @@ anjuta_util_get_user_mail()
*
* Clones the contents of source GPtrArray into a new allocated GPtrArray.
*
- * Return a new allocated GPtrArray with strings g_strdup (), NULL on error.
+ * Return a new allocated GPtrArray with strings g_strdup (), %NULL on error.
* The returned array has set g_free as GDestroyNotity function, so that user
* should only care to g_ptr_array_unref () without freeing the strings.
*/
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]