diff options
author | Marco Barisione <marco.barisione@collabora.co.uk> | 2013-07-29 16:32:09 +0800 |
---|---|---|
committer | Marco Barisione <marco.barisione@collabora.co.uk> | 2013-08-20 18:03:05 +0800 |
commit | 59d0c113fdf2e565f512c98334a1808cfd216fa9 (patch) | |
tree | 6298463ab4aa96a3ad12448387e4e0edc97089df /libempathy/empathy-message.c | |
parent | 1f633bf20747995395b1dcc7001e0c9502104eda (diff) | |
download | gsoc2013-empathy-59d0c113fdf2e565f512c98334a1808cfd216fa9.tar.gz gsoc2013-empathy-59d0c113fdf2e565f512c98334a1808cfd216fa9.tar.zst gsoc2013-empathy-59d0c113fdf2e565f512c98334a1808cfd216fa9.zip |
time: move from Empathy to tp-account-widgets
https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'libempathy/empathy-message.c')
-rw-r--r-- | libempathy/empathy-message.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy/empathy-message.c b/libempathy/empathy-message.c index 1115eddda..d6f30a678 100644 --- a/libempathy/empathy-message.c +++ b/libempathy/empathy-message.c @@ -26,9 +26,9 @@ #include "empathy-message.h" #include <glib/gi18n-lib.h> +#include <tp-account-widgets/tpaw-time.h> #include "empathy-client-factory.h" -#include "empathy-time.h" #include "empathy-utils.h" #include "empathy-enum-types.h" @@ -196,7 +196,7 @@ empathy_message_init (EmpathyMessage *message) EMPATHY_TYPE_MESSAGE, EmpathyMessagePriv); message->priv = priv; - priv->timestamp = empathy_time_get_current (); + priv->timestamp = tpaw_time_get_current (); } static void @@ -314,7 +314,7 @@ message_set_property (GObject *object, case PROP_TIMESTAMP: priv->timestamp = g_value_get_int64 (value); if (priv->timestamp <= 0) - priv->timestamp = empathy_time_get_current (); + priv->timestamp = tpaw_time_get_current (); break; case PROP_ORIGINAL_TIMESTAMP: priv->original_timestamp = g_value_get_int64 (value); |