aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-04-19 17:31:18 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2011-04-21 10:36:04 +0800
commit3aa72e42ffe1ce5068dfc5c351d05598f2884bea (patch)
treec71f28fa198d690de7eb7db09e9d4a373b3ade23
parent5fc44ac8edcdf5702a0793217f9275bd00748932 (diff)
downloadgsoc2013-empathy-3aa72e42ffe1ce5068dfc5c351d05598f2884bea.tar
gsoc2013-empathy-3aa72e42ffe1ce5068dfc5c351d05598f2884bea.tar.gz
gsoc2013-empathy-3aa72e42ffe1ce5068dfc5c351d05598f2884bea.tar.bz2
gsoc2013-empathy-3aa72e42ffe1ce5068dfc5c351d05598f2884bea.tar.lz
gsoc2013-empathy-3aa72e42ffe1ce5068dfc5c351d05598f2884bea.tar.xz
gsoc2013-empathy-3aa72e42ffe1ce5068dfc5c351d05598f2884bea.tar.zst
gsoc2013-empathy-3aa72e42ffe1ce5068dfc5c351d05598f2884bea.zip
empathy-time: remove unused functions
-rw-r--r--libempathy/empathy-time.c50
-rw-r--r--libempathy/empathy-time.h2
2 files changed, 0 insertions, 52 deletions
diff --git a/libempathy/empathy-time.c b/libempathy/empathy-time.c
index 13e17d152..b0ad01888 100644
--- a/libempathy/empathy-time.c
+++ b/libempathy/empathy-time.c
@@ -37,56 +37,6 @@ empathy_time_get_current (void)
return time (NULL);
}
-time_t
-empathy_time_get_local_time (struct tm *tm)
-{
- const gchar *tz;
- time_t t;
-
- tz = g_getenv ("TZ");
- g_setenv ("TZ", "", TRUE);
-
- tzset ();
-
- t = mktime (tm);
-
- if (tz) {
- g_setenv ("TZ", tz, TRUE);
- } else {
- g_unsetenv ("TZ");
- }
-
- tzset ();
-
- return t;
-}
-
-/* The format is: "20021209T23:51:30" and is in UTC. 0 is returned on
- * failure. The alternative format "20021209" is also accepted.
- */
-time_t
-empathy_time_parse (const gchar *str)
-{
- struct tm tm;
- gint year, month;
- gint n_parsed;
-
- memset (&tm, 0, sizeof (struct tm));
-
- n_parsed = sscanf (str, "%4d%2d%2dT%2d:%2d:%2d",
- &year, &month, &tm.tm_mday, &tm.tm_hour,
- &tm.tm_min, &tm.tm_sec);
- if (n_parsed != 3 && n_parsed != 6) {
- return 0;
- }
-
- tm.tm_year = year - 1900;
- tm.tm_mon = month - 1;
- tm.tm_isdst = -1;
-
- return empathy_time_get_local_time (&tm);
-}
-
/* Converts the UTC timestamp to a string, also in UTC. Returns NULL on failure. */
gchar *
empathy_time_to_string_utc (time_t t,
diff --git a/libempathy/empathy-time.h b/libempathy/empathy-time.h
index 65e0127c7..5c20a6a5a 100644
--- a/libempathy/empathy-time.h
+++ b/libempathy/empathy-time.h
@@ -40,8 +40,6 @@ G_BEGIN_DECLS
#define EMPATHY_TIME_DATE_FORMAT_DISPLAY_SHORT _("%a %d %b %Y, %H:%M")
time_t empathy_time_get_current (void);
-time_t empathy_time_get_local_time (struct tm *tm);
-time_t empathy_time_parse (const gchar *str);
gchar *empathy_time_to_string_utc (time_t t,
const gchar *format);
gchar *empathy_time_to_string_local (time_t t,