qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH 05/10] ui/gtk: remove unused variable ignore_keys


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH 05/10] ui/gtk: remove unused variable ignore_keys
Date: Tue, 12 May 2020 13:50:23 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0

On 5/10/20 8:42 PM, Volker Rümelin wrote:
Since the removal of GTK2 code

"... in commit 89d85cde7 ..."

the code around ignore_keys is
unused. See commit 1a01716a30 "gtk: Avoid accel key leakage
into guest on console switch" why it was needed before.

Signed-off-by: Volker Rümelin <address@hidden>

With description updated:
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>

---
  ui/gtk.c | 9 ---------
  1 file changed, 9 deletions(-)

diff --git a/ui/gtk.c b/ui/gtk.c
index c70bfc2be4..5a25e3fa4c 100644
--- a/ui/gtk.c
+++ b/ui/gtk.c
@@ -168,8 +168,6 @@ struct GtkDisplayState {
bool external_pause_update; - bool ignore_keys;
-
      DisplayOptions *opts;
  };
@@ -1085,14 +1083,8 @@ static gboolean gd_text_key_down(GtkWidget *widget,
  static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void 
*opaque)
  {
      VirtualConsole *vc = opaque;
-    GtkDisplayState *s = vc->s;
      int qcode;
- if (s->ignore_keys) {
-        s->ignore_keys = (key->type == GDK_KEY_PRESS);
-        return TRUE;
-    }
-
  #ifdef WIN32
      /* on windows, we ought to ignore the reserved key event? */
      if (key->hardware_keycode == 0xff)
@@ -1189,7 +1181,6 @@ static void gd_menu_switch_vc(GtkMenuItem *item, void 
*opaque)
          gtk_notebook_set_current_page(nb, page);
          gtk_widget_grab_focus(vc->focus);
      }
-    s->ignore_keys = false;
  }
static void gd_accel_switch_vc(void *opaque)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]