aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-08-07 22:39:02 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-08-07 22:48:03 +0800
commitb557adcf50f8a84424414a88cc129ecadb185057 (patch)
tree4cca92ba6b68de6b7591935ca83aaf97761e67a5
parent1d448e21f4b4d8caa3b08696586dba6be2ecf098 (diff)
downloadgsoc2013-empathy-b557adcf50f8a84424414a88cc129ecadb185057.tar
gsoc2013-empathy-b557adcf50f8a84424414a88cc129ecadb185057.tar.gz
gsoc2013-empathy-b557adcf50f8a84424414a88cc129ecadb185057.tar.bz2
gsoc2013-empathy-b557adcf50f8a84424414a88cc129ecadb185057.tar.lz
gsoc2013-empathy-b557adcf50f8a84424414a88cc129ecadb185057.tar.xz
gsoc2013-empathy-b557adcf50f8a84424414a88cc129ecadb185057.tar.zst
gsoc2013-empathy-b557adcf50f8a84424414a88cc129ecadb185057.zip
use the user_action_time received from TP when presenting existing call window
https://bugzilla.gnome.org/show_bug.cgi?id=705618
-rw-r--r--src/empathy-call-window.c7
-rw-r--r--src/empathy-call-window.h4
-rw-r--r--src/empathy-call.c2
3 files changed, 9 insertions, 4 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index 711badfc5..03c9efb61 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -2455,11 +2455,14 @@ empathy_call_window_new (EmpathyCallHandler *handler)
void
empathy_call_window_new_handler (EmpathyCallWindow *self,
- EmpathyCallHandler *handler)
+ EmpathyCallHandler *handler,
+ gboolean present,
+ guint32 x11_time)
{
g_return_if_fail (EMPATHY_IS_CALL_HANDLER (handler));
- empathy_window_present (GTK_WINDOW (self));
+ if (present)
+ empathy_window_present_with_time (GTK_WINDOW (self), x11_time);
if (self->priv->call_state == DISCONNECTED)
{
diff --git a/src/empathy-call-window.h b/src/empathy-call-window.h
index 666071fc9..ad7b1f262 100644
--- a/src/empathy-call-window.h
+++ b/src/empathy-call-window.h
@@ -63,7 +63,9 @@ GType empathy_call_window_get_type (void);
EmpathyCallWindow *empathy_call_window_new (EmpathyCallHandler *handler);
void empathy_call_window_new_handler (EmpathyCallWindow *window,
- EmpathyCallHandler *handler);
+ EmpathyCallHandler *handler,
+ gboolean present,
+ guint32 x11_time);
void empathy_call_window_start_ringing (EmpathyCallWindow *self,
TpCallChannel *channel,
TpChannelDispatchOperation *dispatch_operation,
diff --git a/src/empathy-call.c b/src/empathy-call.c
index 4c27a9502..2b944552b 100644
--- a/src/empathy-call.c
+++ b/src/empathy-call.c
@@ -146,7 +146,7 @@ new_call_handler_cb (EmpathyCallFactory *factory,
if (window != NULL)
{
- empathy_call_window_new_handler (window, handler);
+ empathy_call_window_new_handler (window, handler, present, x11_time);
}
else
{