diff options
author | Yuuki Harano <masm+github@masm11.me> | 2020-03-31 01:32:10 +0900 |
---|---|---|
committer | Jeff Walsh <jeff.walsh@drtusers-MacBook-Pro.local> | 2020-11-24 12:24:39 +1100 |
commit | 49645df52e949da1c34a69f49aabbff300986893 (patch) | |
tree | ce8f79f54d5c1993af9f3b734598148c3d8a2adc /src/gtkutil.h | |
parent | cbd28cddea180ab3be14532e7a341c89ebc02fcc (diff) | |
download | emacs-49645df52e949da1c34a69f49aabbff300986893.tar.gz emacs-49645df52e949da1c34a69f49aabbff300986893.tar.bz2 emacs-49645df52e949da1c34a69f49aabbff300986893.zip |
minimize gtkutil.c differences.
* src/pgtkterm.h: remove compiletime ifdefs
* src/gtkutil.h: block out unused decl
* src/gtkutil.c:
(xg_get_pixbuf_from_pix_and_mask, xg_height_or_width_changed)
(xg_create_frame_widgets, x_wm_set_size_hint)
(xg_event_is_for_menubar, update_frame_tool_bar):
resolve argument type mismatch.
fix compatibility.
Diffstat (limited to 'src/gtkutil.h')
-rw-r--r-- | src/gtkutil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gtkutil.h b/src/gtkutil.h index 5087b3167d2..b7f67ba9281 100644 --- a/src/gtkutil.h +++ b/src/gtkutil.h @@ -180,9 +180,11 @@ extern bool xg_check_special_colors (struct frame *f, const char *color_name, Emacs_Color *color); +#ifndef HAVE_PGTK extern void xg_set_frame_icon (struct frame *f, Pixmap icon_pixmap, Pixmap icon_mask); +#endif extern void xg_set_undecorated (struct frame *f, Lisp_Object undecorated); extern void xg_frame_restack (struct frame *f1, struct frame *f2, bool above); |