@@ -451,7 +451,6 @@ namespace Gala {
451451 return Clutter . EVENT_STOP ;
452452 }
453453
454- [CCode (instance_pos = -1 )]
455454 private void handle_cycle_workspaces (Meta .Display display , Meta .Window ? window , Clutter .KeyEvent ? event ,
456455 Meta .KeyBinding binding ) {
457456 var direction = (binding. get_name () == " cycle-workspaces-next" ? 1 : - 1 );
@@ -473,7 +472,6 @@ namespace Gala {
473472 }
474473 }
475474
476- [CCode (instance_pos = -1 )]
477475 private void handle_move_to_workspace (Meta .Display display , Meta .Window ? window ,
478476 Clutter .KeyEvent ? event , Meta .KeyBinding binding ) {
479477 if (window == null ) {
@@ -501,7 +499,6 @@ namespace Gala {
501499 }
502500 }
503501
504- [CCode (instance_pos = -1 )]
505502 private void handle_move_to_workspace_end (Meta .Display display , Meta .Window ? window ,
506503 Clutter .KeyEvent ? event , Meta .KeyBinding binding ) {
507504 if (window == null ) {
@@ -516,7 +513,6 @@ namespace Gala {
516513 workspace. activate_with_focus (window, timestamp);
517514 }
518515
519- [CCode (instance_pos = -1 )]
520516 private void handle_switch_to_workspace (Meta .Display display , Meta .Window ? window ,
521517 Clutter .KeyEvent ? event , Meta .KeyBinding binding ) {
522518 var timestamp = event != null ? event. get_time () : Meta . CURRENT_TIME ;
@@ -540,15 +536,13 @@ namespace Gala {
540536 }
541537 }
542538
543- [CCode (instance_pos = -1 )]
544539 private void handle_switch_to_workspace_end (Meta .Display display , Meta .Window ? window ,
545540 Clutter .KeyEvent ? event , Meta .KeyBinding binding ) {
546541 unowned Meta . WorkspaceManager manager = display. get_workspace_manager ();
547542 var index = (binding. get_name () == " switch-to-workspace-first" ? 0 : manager. n_workspaces - 1 );
548543 manager. get_workspace_by_index (index). activate (event != null ? event. get_time () : Meta . CURRENT_TIME );
549544 }
550545
551- [CCode (instance_pos = -1 )]
552546 private void handle_applications_menu (Meta .Display display , Meta .Window ? window ,
553547 Clutter .KeyEvent ? event , Meta .KeyBinding binding ) {
554548 launch_action (ActionKeys . PANEL_MAIN_MENU_ACTION );
0 commit comments