From e7f6f850d481cd09b66bde572a6871a667a2a99c Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 12 Dec 2015 11:28:04 +0100 Subject: [PATCH] Renamed ZakUtils::str_to_boolean to ::string_to_boolean. --- src/generic.c | 4 ++-- src/generic.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/generic.c b/src/generic.c index 7ab5f07..f732001 100644 --- a/src/generic.c +++ b/src/generic.c @@ -437,7 +437,7 @@ GValue } /** - * zak_utils_str_to_boolean: + * zak_utils_string_to_boolean: * @value: * * Utility function to convert a string to its #gboolean equivalent. @@ -445,7 +445,7 @@ GValue * Returns: the #gboolean equivalent from @value. */ gboolean -zak_utils_str_to_boolean (const gchar *str) +zak_utils_string_to_boolean (const gchar *str) { gchar *str_value; gboolean bool_value; diff --git a/src/generic.h b/src/generic.h index bfa0fe2..d509d79 100644 --- a/src/generic.h +++ b/src/generic.h @@ -49,7 +49,7 @@ GValue *zak_utils_gvalue_new_boolean (gboolean b); GValue *zak_utils_gvalue_new_float (gfloat f); GValue *zak_utils_gvalue_new_gdatetime (GDateTime *datetime); -gboolean zak_utils_str_to_boolean (const gchar *str); +gboolean zak_utils_string_to_boolean (const gchar *str); G_END_DECLS -- 2.49.0