shell/perf-helper: Remove unused struct members
Some parameters are only relevant when creating the window, and are therefore never read from the window info struct. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2733>
This commit is contained in:
parent
2416e4eec0
commit
e9ec45e5e3
@ -38,11 +38,8 @@ static const gchar introspection_xml[] =
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
GtkWidget *window;
|
GtkWidget *window;
|
||||||
int width;
|
|
||||||
int height;
|
|
||||||
|
|
||||||
guint alpha : 1;
|
guint alpha : 1;
|
||||||
guint maximized : 1;
|
|
||||||
guint redraws : 1;
|
guint redraws : 1;
|
||||||
guint mapped : 1;
|
guint mapped : 1;
|
||||||
guint exposed : 1;
|
guint exposed : 1;
|
||||||
@ -209,10 +206,7 @@ create_window (int width,
|
|||||||
GtkWidget *child;
|
GtkWidget *child;
|
||||||
|
|
||||||
info = g_new0 (WindowInfo, 1);
|
info = g_new0 (WindowInfo, 1);
|
||||||
info->width = width;
|
|
||||||
info->height = height;
|
|
||||||
info->alpha = alpha;
|
info->alpha = alpha;
|
||||||
info->maximized = maximized;
|
|
||||||
info->redraws = redraws;
|
info->redraws = redraws;
|
||||||
info->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
info->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||||
if (alpha)
|
if (alpha)
|
||||||
|
Loading…
Reference in New Issue
Block a user