[mutter] display: Remove replaced signals



commit 5b8c8a4114bd02e50d5b4a4bfba593c13ad477bc
Author: Jonas Ådahl <jadahl gmail com>
Date:   Wed Jan 3 12:20:23 2018 +0800

    display: Remove replaced signals
    
    MetaDisplay still had workspace signals, but nothing emitted them,
    meaning we wouldn't get warnings if handlers were added there instead
    of to MetaWorkspaceManager.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=759538

 src/core/display.c | 40 ----------------------------------------
 1 file changed, 40 deletions(-)
---
diff --git a/src/core/display.c b/src/core/display.c
index 2e6fe3349..3b1aeaaa0 100644
--- a/src/core/display.c
+++ b/src/core/display.c
@@ -448,46 +448,6 @@ meta_display_class_init (MetaDisplayClass *klass)
                   G_TYPE_INT,
                   META_TYPE_WINDOW);
 
-  display_signals[WORKSPACE_ADDED] =
-    g_signal_new ("workspace-added",
-                  G_TYPE_FROM_CLASS (klass),
-                  G_SIGNAL_RUN_LAST,
-                  0,
-                  NULL, NULL, NULL,
-                  G_TYPE_NONE,
-                  1,
-                  G_TYPE_INT);
-
-  display_signals[WORKSPACE_REMOVED] =
-    g_signal_new ("workspace-removed",
-                  G_TYPE_FROM_CLASS (klass),
-                  G_SIGNAL_RUN_LAST,
-                  0,
-                  NULL, NULL, NULL,
-                  G_TYPE_NONE,
-                  1,
-                  G_TYPE_INT);
-
-  display_signals[WORKSPACE_SWITCHED] =
-    g_signal_new ("workspace-switched",
-                  G_TYPE_FROM_CLASS (klass),
-                  G_SIGNAL_RUN_LAST,
-                  0,
-                  NULL, NULL, NULL,
-                  G_TYPE_NONE,
-                  3,
-                  G_TYPE_INT,
-                  G_TYPE_INT,
-                  META_TYPE_MOTION_DIRECTION);
-
-  display_signals[ACTIVE_WORKSPACE_CHANGED] =
-    g_signal_new ("active-workspace-changed",
-                  G_TYPE_FROM_CLASS (klass),
-                  G_SIGNAL_RUN_LAST,
-                  0,
-                  NULL, NULL, NULL,
-                  G_TYPE_NONE, 0);
-
   display_signals[IN_FULLSCREEN_CHANGED] =
     g_signal_new ("in-fullscreen-changed",
                   G_TYPE_FROM_CLASS (klass),


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