summaryrefslogtreecommitdiff
path: root/src/w32font.h
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2015-01-29 19:16:56 +0200
committerEli Zaretskii <eliz@gnu.org>2015-01-29 19:16:56 +0200
commit0761ec1669d6125d555ec39d2b938ce3562874af (patch)
tree83f62ccea45c0ade728fc55a9146f2020c129e0e /src/w32font.h
parent0c7b0967d262bd361de721d0d7a4da192bde1319 (diff)
Use bool for boolean in w32menu.c, w32font.c, w32uniscribe.c.
src/w32uniscribe.c (uniscribe_list, uniscribe_match): Use bool where appropriate. src/w32font.c (struct font_callback_data, w32font_list_internal) (w32font_driver, w32font_match_internal): Use bool where appropriate. src/w32menu.c (x_activate_menubar, set_frame_menubar) (w32_dialog_show, initialize_frame_menubar, w32_menu_show) (is_simple_dialog): Use bool where appropriate.
Diffstat (limited to 'src/w32font.h')
-rw-r--r--src/w32font.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32font.h b/src/w32font.h
index 82c5e09b9fc..0ad01254be9 100644
--- a/src/w32font.h
+++ b/src/w32font.h
@@ -66,10 +66,10 @@ struct w32font_info
Lisp_Object w32font_get_cache (struct frame *fe);
Lisp_Object w32font_list_internal (struct frame *f,
Lisp_Object font_spec,
- int opentype_only);
+ bool opentype_only);
Lisp_Object w32font_match_internal (struct frame *f,
Lisp_Object font_spec,
- int opentype_only);
+ bool opentype_only);
int w32font_open_internal (struct frame *f, Lisp_Object font_entity,
int pixel_size, Lisp_Object font_object);
void w32font_close (struct font *font);