diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-04-22 16:06:59 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-06-09 19:34:54 +0800 |
commit | 013aa1784ede94f87f24cb419ac6efbf2e95961b (patch) | |
tree | 822313c2706a9e213439717bb488940c10a146f6 /libempathy-gtk/empathy-log-window.c | |
parent | e899cd55697dba16f40d146ec3637ddd6f3bc53b (diff) | |
download | gsoc2013-empathy-013aa1784ede94f87f24cb419ac6efbf2e95961b.tar gsoc2013-empathy-013aa1784ede94f87f24cb419ac6efbf2e95961b.tar.gz gsoc2013-empathy-013aa1784ede94f87f24cb419ac6efbf2e95961b.tar.bz2 gsoc2013-empathy-013aa1784ede94f87f24cb419ac6efbf2e95961b.tar.lz gsoc2013-empathy-013aa1784ede94f87f24cb419ac6efbf2e95961b.tar.xz gsoc2013-empathy-013aa1784ede94f87f24cb419ac6efbf2e95961b.tar.zst gsoc2013-empathy-013aa1784ede94f87f24cb419ac6efbf2e95961b.zip |
log_window_chats_get_selected -> log_window_get_selected
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index b24643f62..5e5099f69 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -795,7 +795,7 @@ log_window_append_message (TplEvent *event, } static gboolean -log_window_chats_get_selected (EmpathyLogWindow *window, +log_window_get_selected (EmpathyLogWindow *window, TpAccount **account, TplEntity **target, GDate **date, @@ -928,7 +928,7 @@ populate_events_from_search_hits (TpAccount *account, GDate *anytime; GList *l; - if (!log_window_chats_get_selected (log_window, + if (!log_window_get_selected (log_window, NULL, NULL, NULL, &event_mask, &subtype)) return; @@ -1146,7 +1146,7 @@ search_results_filter_entities (GtkTreeModel *model, if (log_window->hits == NULL) return TRUE; - if (!log_window_chats_get_selected (log_window, &selected_account, + if (!log_window_get_selected (log_window, &selected_account, NULL, NULL, NULL, NULL)) gtk_tree_model_get (model, iter, @@ -2045,7 +2045,7 @@ log_window_get_messages_for_date (EmpathyLogWindow *window, EventSubtype subtype; GDate *anytime, *separator; - if (!log_window_chats_get_selected (window, + if (!log_window_get_selected (window, &account, &target, NULL, &event_mask, &subtype)) return; @@ -2197,7 +2197,7 @@ log_window_chats_get_messages (EmpathyLogWindow *window, GtkTreeSelection *selection; GDate *date; - if (!log_window_chats_get_selected (window, &account, &target, + if (!log_window_get_selected (window, &account, &target, &date, &event_mask, NULL)) return; |