summaryrefslogtreecommitdiffstats
path: root/src/gui_gtk_f.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-03-29 18:07:40 +0200
committerBram Moolenaar <Bram@vim.org>2017-03-29 18:07:40 +0200
commit99a6e8dd824399332563caa6cacfcda33da1f366 (patch)
tree297332b659dce7484455fb3ce364e50650d15a36 /src/gui_gtk_f.h
parentace95989ed81929a84e205b26d0972cb9d6b4b19 (diff)
patch 8.0.0521: GtkForm handling is outdatedv8.0.0521
Problem: GtkForm handling is outdated. Solution: Get rid of event filter functions. Get rid of GtkForm.width and .height. Eliminate gtk_widget_size_request() calls. (Kazunobu Kuriyama)
Diffstat (limited to 'src/gui_gtk_f.h')
-rw-r--r--src/gui_gtk_f.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gui_gtk_f.h b/src/gui_gtk_f.h
index 7bcf48b830..be7693a4da 100644
--- a/src/gui_gtk_f.h
+++ b/src/gui_gtk_f.h
@@ -43,19 +43,7 @@ struct _GtkForm
GtkContainer container;
GList *children;
-
-#ifndef USE_GTK3
- guint width;
- guint height;
-#endif
-
GdkWindow *bin_window;
-
-#ifndef USE_GTK3
- GdkVisibilityState visibility;
- gulong configure_serial;
-#endif
-
gint freeze_count;
};