From d00adf45ea54086a8d1d29090639b5beb3f88b34 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Sat, 13 Oct 2007 13:00:29 +0000 Subject: Don't use deprecated GtkTooltips API. Add commented out lines in 2007-10-13 Xavier Claessens * libempathy-gtk/empathy-chat-view.h: * libempathy-gtk/empathy-main-window.c: * libempathy-gtk/empathy-chat.c: * libempathy-gtk/empathy-chat-window.c: * libempathy-gtk/empathy-chat-view.c: * libempathy/empathy-log-manager.c: * libempathy/empathy-time.c: * libempathy/empathy-tp-chat.c: * libempathy/empathy-time.h: * libempathy/empathy-message.c: * libempathy/empathy-message.h: * libempathy/empathy-presence.c: * configure.ac: Don't use deprecated GtkTooltips API. Add commented out lines in configure.ac to disable GLib and GTK deprecated symbols. Replace EmpathyTime by time_t which is more appropriate for timestamps. * doc/*: Updated. svn path=/trunk/; revision=371 --- libempathy/empathy-log-manager.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libempathy/empathy-log-manager.c') diff --git a/libempathy/empathy-log-manager.c b/libempathy/empathy-log-manager.c index efdbae86b..e5ff2b777 100644 --- a/libempathy/empathy-log-manager.c +++ b/libempathy/empathy-log-manager.c @@ -329,7 +329,7 @@ empathy_log_manager_get_messages_for_file (EmpathyLogManager *manager, EmpathyMessage *message; EmpathyContact *sender; gchar *time; - EmpathyTime t; + time_t t; gchar *sender_id; gchar *sender_name; gchar *body; @@ -527,7 +527,7 @@ empathy_log_manager_search_free (GList *hits) gchar * empathy_log_manager_get_date_readable (const gchar *date) { - EmpathyTime t; + time_t t; t = empathy_time_parse (date); @@ -703,7 +703,7 @@ log_manager_get_filename_for_date (EmpathyLogManager *manager, static gchar * log_manager_get_timestamp_filename (void) { - EmpathyTime t; + time_t t; gchar *time_str; gchar *filename; @@ -719,7 +719,7 @@ log_manager_get_timestamp_filename (void) static gchar * log_manager_get_timestamp_from_message (EmpathyMessage *message) { - EmpathyTime t; + time_t t; t = empathy_message_get_timestamp (message); -- cgit v1.2.3