]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-ui-utils.c
Pass the ChannelDispatcher timestamp onwards to window_present
[empathy.git] / libempathy-gtk / empathy-ui-utils.c
index 3f37ea2db973d7672e8ac85f35308613fb4c7043..70098ad3e965f68198cca2d7688e174e5a86ca96 100644 (file)
@@ -1392,10 +1392,10 @@ empathy_window_iconify (GtkWindow *window, GtkStatusIcon *status_icon)
 
 /* Takes care of moving the window to the current workspace. */
 void
-empathy_window_present (GtkWindow *window)
+empathy_window_present_with_time (GtkWindow *window,
+                       guint32 timestamp)
 {
        GdkWindow *gdk_window;
-       guint32 timestamp;
 
        g_return_if_fail (GTK_IS_WINDOW (window));
 
@@ -1436,6 +1436,12 @@ empathy_window_present (GtkWindow *window)
        gtk_window_deiconify (window);
 }
 
+void
+empathy_window_present (GtkWindow *window)
+{
+  empathy_window_present_with_time (window, GDK_CURRENT_TIME);
+}
+
 GtkWindow *
 empathy_get_toplevel_window (GtkWidget *widget)
 {