[mutter/wayland] window: Remove timestamp argument from change_workspace_by_index



commit d82e24981bb02d2cdacd4c0d586857f19b04d9ec
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Wed Oct 9 15:36:51 2013 -0400

    window: Remove timestamp argument from change_workspace_by_index
    
    It's unused, since we aren't activating the workspace.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=709776

 src/core/window.c |    9 ++-------
 src/meta/window.h |    3 +--
 2 files changed, 3 insertions(+), 9 deletions(-)
---
diff --git a/src/core/window.c b/src/core/window.c
index 81bf83f..a7517cc 100644
--- a/src/core/window.c
+++ b/src/core/window.c
@@ -6836,8 +6836,7 @@ meta_window_property_notify (MetaWindow *window,
 void
 meta_window_change_workspace_by_index (MetaWindow *window,
                                        gint        space_index,
-                                       gboolean    append,
-                                       guint32     timestamp)
+                                       gboolean    append)
 {
   MetaWorkspace *workspace;
   MetaScreen    *screen;
@@ -6856,11 +6855,7 @@ meta_window_change_workspace_by_index (MetaWindow *window,
     meta_screen_get_workspace_by_index (screen, space_index);
 
   if (!workspace && append)
-    {
-      if (timestamp == CurrentTime)
-        timestamp = meta_display_get_current_time_roundtrip (window->display);
-      workspace = meta_screen_append_new_workspace (screen, FALSE, timestamp);
-    }
+    workspace = meta_screen_append_new_workspace (screen, FALSE, CurrentTime);
 
   if (workspace)
     {
diff --git a/src/meta/window.h b/src/meta/window.h
index 0b49c03..bc03cf0 100644
--- a/src/meta/window.h
+++ b/src/meta/window.h
@@ -150,8 +150,7 @@ void meta_window_unset_demands_attention (MetaWindow *window);
 const char* meta_window_get_startup_id (MetaWindow *window);
 void meta_window_change_workspace_by_index (MetaWindow *window,
                                             gint        space_index,
-                                            gboolean    append,
-                                            guint32     timestamp);
+                                            gboolean    append);
 void meta_window_change_workspace          (MetaWindow  *window,
                                             MetaWorkspace *workspace);
 GObject *meta_window_get_compositor_private (MetaWindow *window);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]