[glib] GDateTime: cosmetics
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] GDateTime: cosmetics
- Date: Mon, 22 Aug 2011 04:45:19 +0000 (UTC)
commit 6fae33b10aa46f1b1bde7f8b0c871f2f13add6e0
Author: Matthias Clasen <mclasen redhat com>
Date: Sun Aug 21 23:32:28 2011 -0400
GDateTime: cosmetics
Don't hide the recursion in g_date_time_format() behind
a macro, make it explicit.
glib/gdatetime.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/glib/gdatetime.c b/glib/gdatetime.c
index c8fdbbe..7d00ecb 100644
--- a/glib/gdatetime.c
+++ b/glib/gdatetime.c
@@ -158,10 +158,10 @@ struct _GDateTime
#define MONTH_FULL(d) (get_month_name (g_date_time_get_month (datetime)))
/* Translators: this is the preferred format for expressing the date */
-#define GET_PREFERRED_DATE(d) (g_date_time_format ((d), C_("GDateTime", "%m/%d/%y")))
+#define PREFERRED_DATE_FMT C_("GDateTime", "%m/%d/%y")
/* Translators: this is the preferred format for expressing the time */
-#define GET_PREFERRED_TIME(d) (g_date_time_format ((d), C_("GDateTime", "%H:%M:%S")))
+#define PREFERRED_TIME_FMT C_("GDateTime", "%H:%M:%S")
#define SECS_PER_MINUTE (60)
#define SECS_PER_HOUR (60 * SECS_PER_MINUTE)
@@ -2314,8 +2314,8 @@ get_numeric_format (gchar *fmt,
* Since: 2.26
*/
gchar *
-g_date_time_format (GDateTime *datetime,
- const gchar *format)
+g_date_time_format (GDateTime *datetime,
+ const gchar *format)
{
GString *outstr;
gchar *tmp;
@@ -2482,14 +2482,14 @@ g_date_time_format (GDateTime *datetime,
break;
case 'x':
{
- tmp = GET_PREFERRED_DATE (datetime);
+ tmp = g_date_time_format (datetime, PREFERRED_DATE_FMT);
g_string_append (outstr, tmp);
g_free (tmp);
}
break;
case 'X':
{
- tmp = GET_PREFERRED_TIME (datetime);
+ tmp = g_date_time_format (datetime, PREFERRED_TIME_FMT);
g_string_append (outstr, tmp);
g_free (tmp);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]