diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-10-13 21:00:29 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-10-13 21:00:29 +0800 |
commit | d00adf45ea54086a8d1d29090639b5beb3f88b34 (patch) | |
tree | 9cc7756b93e51e5c9ba250e82164316e8778e3f3 /libempathy-gtk/empathy-main-window.c | |
parent | 0ab84cc3ffe6129ae40ad436eb62fccbd52b00ad (diff) | |
download | gsoc2013-empathy-d00adf45ea54086a8d1d29090639b5beb3f88b34.tar gsoc2013-empathy-d00adf45ea54086a8d1d29090639b5beb3f88b34.tar.gz gsoc2013-empathy-d00adf45ea54086a8d1d29090639b5beb3f88b34.tar.bz2 gsoc2013-empathy-d00adf45ea54086a8d1d29090639b5beb3f88b34.tar.lz gsoc2013-empathy-d00adf45ea54086a8d1d29090639b5beb3f88b34.tar.xz gsoc2013-empathy-d00adf45ea54086a8d1d29090639b5beb3f88b34.tar.zst gsoc2013-empathy-d00adf45ea54086a8d1d29090639b5beb3f88b34.zip |
Don't use deprecated GtkTooltips API. Add commented out lines in
2007-10-13 Xavier Claessens <xclaesse@gmail.com>
* 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
Diffstat (limited to 'libempathy-gtk/empathy-main-window.c')
-rw-r--r-- | libempathy-gtk/empathy-main-window.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/libempathy-gtk/empathy-main-window.c b/libempathy-gtk/empathy-main-window.c index 8883fa306..26e54226f 100644 --- a/libempathy-gtk/empathy-main-window.c +++ b/libempathy-gtk/empathy-main-window.c @@ -75,9 +75,6 @@ typedef struct { GtkWidget *window; GtkWidget *main_vbox; - /* Tooltips for all widgets */ - GtkTooltips *tooltips; - /* Menu widgets */ GtkWidget *room; GtkWidget *room_menu; @@ -187,7 +184,6 @@ empathy_main_window_show (void) GtkWidget *show_offline_widget; GtkWidget *ebox; GtkToolItem *item; - gchar *str; gboolean show_offline; gboolean show_avatars; gboolean compact_contact_list; @@ -240,7 +236,6 @@ empathy_main_window_show (void) main_window_connection_items_setup (window, glade); g_object_unref (glade); - window->tooltips = g_object_ref_sink (gtk_tooltips_new ()); window->mc = empathy_mission_control_new (); dbus_g_proxy_connect_signal (DBUS_G_PROXY (window->mc), "AccountStatusChanged", G_CALLBACK (main_window_status_changed_cb), @@ -276,9 +271,7 @@ empathy_main_window_show (void) gtk_toolbar_insert (GTK_TOOLBAR (window->presence_toolbar), item, -1); - str = _("Show and edit accounts"); - gtk_tooltips_set_tip (GTK_TOOLTIPS (window->tooltips), - ebox, str, str); + gtk_widget_set_tooltip_text (ebox, _("Show and edit accounts")); g_signal_connect (ebox, "button-press-event", @@ -386,7 +379,6 @@ main_window_destroy_cb (GtkWidget *widget, g_list_free (window->widgets_connected); g_list_free (window->widgets_disconnected); - g_object_unref (window->tooltips); g_object_unref (window->mc); g_object_unref (window->list_store); |