datetime: Rename internal method

Use add_ymd(), to reflect the order of the arguments.
This commit is contained in:
Emmanuele Bassi 2010-08-26 13:11:46 +01:00
parent 959886d95e
commit 70ef2e3bf6

View File

@ -337,7 +337,7 @@ g_date_time_add_usec (GDateTime *datetime,
} }
/*< internal > /*< internal >
* g_date_time_add_dmy: * g_date_time_add_ymd:
* @datetime: a #GDateTime * @datetime: a #GDateTime
* @years: years to add, in the Gregorian calendar * @years: years to add, in the Gregorian calendar
* @months: months to add, in the Gregorian calendar * @months: months to add, in the Gregorian calendar
@ -349,7 +349,7 @@ g_date_time_add_usec (GDateTime *datetime,
* should make always pass a copy * should make always pass a copy
*/ */
static inline void static inline void
g_date_time_add_dmy (GDateTime *datetime, g_date_time_add_ymd (GDateTime *datetime,
gint years, gint years,
gint months, gint months,
gint days) gint days)
@ -799,7 +799,7 @@ g_date_time_add_years (const GDateTime *datetime,
g_return_val_if_fail (datetime != NULL, NULL); g_return_val_if_fail (datetime != NULL, NULL);
dt = g_date_time_copy (datetime); dt = g_date_time_copy (datetime);
g_date_time_add_dmy (dt, years, 0, 0); g_date_time_add_ymd (dt, years, 0, 0);
return dt; return dt;
} }
@ -826,7 +826,7 @@ g_date_time_add_months (const GDateTime *datetime,
g_return_val_if_fail (datetime != NULL, NULL); g_return_val_if_fail (datetime != NULL, NULL);
dt = g_date_time_copy (datetime); dt = g_date_time_copy (datetime);
g_date_time_add_dmy (dt, 0, months, 0); g_date_time_add_ymd (dt, 0, months, 0);
return dt; return dt;
} }
@ -875,7 +875,7 @@ g_date_time_add_days (const GDateTime *datetime,
g_return_val_if_fail (datetime != NULL, NULL); g_return_val_if_fail (datetime != NULL, NULL);
dt = g_date_time_copy (datetime); dt = g_date_time_copy (datetime);
g_date_time_add_dmy (dt, 0, 0, days); g_date_time_add_ymd (dt, 0, 0, days);
return dt; return dt;
} }
@ -1019,7 +1019,7 @@ g_date_time_add_full (const GDateTime *datetime,
dt = g_date_time_copy (datetime); dt = g_date_time_copy (datetime);
/* add date */ /* add date */
g_date_time_add_dmy (dt, years, months, days); g_date_time_add_ymd (dt, years, months, days);
/* add time */ /* add time */
usecs = (hours * USEC_PER_HOUR) usecs = (hours * USEC_PER_HOUR)