[PATCH weston 5/7] text: Use bool for input_panel_visible
Derek Foreman
derekf at osg.samsung.com
Fri Dec 5 13:38:39 PST 2014
Signed-off-by: Derek Foreman <derekf at osg.samsung.com>
---
src/text-backend.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/text-backend.c b/src/text-backend.c
index e274f0b..e50569a 100644
--- a/src/text-backend.c
+++ b/src/text-backend.c
@@ -23,6 +23,7 @@
#include "config.h"
+#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
@@ -47,7 +48,7 @@ struct text_input {
pixman_box32_t cursor_rectangle;
- uint32_t input_panel_visible;
+ bool input_panel_visible;
};
struct text_input_manager {
@@ -300,7 +301,7 @@ text_input_show_input_panel(struct wl_client *client,
struct text_input *text_input = wl_resource_get_user_data(resource);
struct weston_compositor *ec = text_input->ec;
- text_input->input_panel_visible = 1;
+ text_input->input_panel_visible = true;
if (!wl_list_empty(&text_input->input_methods)) {
wl_signal_emit(&ec->show_input_panel_signal, text_input->surface);
@@ -315,7 +316,7 @@ text_input_hide_input_panel(struct wl_client *client,
struct text_input *text_input = wl_resource_get_user_data(resource);
struct weston_compositor *ec = text_input->ec;
- text_input->input_panel_visible = 0;
+ text_input->input_panel_visible = false;
if (!wl_list_empty(&text_input->input_methods))
wl_signal_emit(&ec->hide_input_panel_signal, ec);
--
2.1.3
More information about the wayland-devel
mailing list