commit
5813525c62
|
@ -631,8 +631,6 @@ static void handle_button_press(xcb_button_press_event_t *event) {
|
||||||
modifier = MOD_Mod1;
|
modifier = MOD_Mod1;
|
||||||
handle_expose();
|
handle_expose();
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -115,7 +115,7 @@ static void start_application(const char *command) {
|
||||||
setsid();
|
setsid();
|
||||||
if (fork() == 0) {
|
if (fork() == 0) {
|
||||||
/* This is the child */
|
/* This is the child */
|
||||||
execl(_PATH_BSHELL, _PATH_BSHELL, "-c", command, (void *)NULL);
|
execl(_PATH_BSHELL, _PATH_BSHELL, "-c", command, NULL);
|
||||||
/* not reached */
|
/* not reached */
|
||||||
}
|
}
|
||||||
exit(0);
|
exit(0);
|
||||||
|
|
|
@ -2067,5 +2067,4 @@ void set_current_mode(struct mode *current) {
|
||||||
I3STRING_FREE(binding.name);
|
I3STRING_FREE(binding.name);
|
||||||
binding = *current;
|
binding = *current;
|
||||||
activated_mode = binding.name != NULL;
|
activated_mode = binding.name != NULL;
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,8 +83,7 @@ xcb_char2b_t *convert_utf8_to_ucs2(char *input, size_t *real_strlen) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Do the conversion */
|
/* Do the conversion */
|
||||||
size_t rc = iconv(ucs2_conversion_descriptor, (char **)&input,
|
size_t rc = iconv(ucs2_conversion_descriptor, &input, &input_size, (char **)&output, &output_size);
|
||||||
&input_size, (char **)&output, &output_size);
|
|
||||||
if (rc == (size_t)-1) {
|
if (rc == (size_t)-1) {
|
||||||
perror("Converting to UCS-2 failed");
|
perror("Converting to UCS-2 failed");
|
||||||
free(buffer);
|
free(buffer);
|
||||||
|
|
|
@ -184,8 +184,6 @@ static void handle_enter_notify(xcb_enter_notify_event_t *event) {
|
||||||
focused_id = XCB_NONE;
|
focused_id = XCB_NONE;
|
||||||
con_focus(con_descend_focused(con));
|
con_focus(con_descend_focused(con));
|
||||||
tree_render();
|
tree_render();
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -249,8 +247,6 @@ static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
|
||||||
ungrab_all_keys(conn);
|
ungrab_all_keys(conn);
|
||||||
translate_keysyms();
|
translate_keysyms();
|
||||||
grab_all_keys(conn);
|
grab_all_keys(conn);
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -266,7 +262,6 @@ static void handle_map_request(xcb_map_request_event_t *event) {
|
||||||
add_ignore_event(event->sequence, -1);
|
add_ignore_event(event->sequence, -1);
|
||||||
|
|
||||||
manage_window(event->window, cookie, false);
|
manage_window(event->window, cookie, false);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -474,8 +469,6 @@ static void handle_screen_change(xcb_generic_event_t *e) {
|
||||||
scratchpad_fix_resolution();
|
scratchpad_fix_resolution();
|
||||||
|
|
||||||
ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
|
ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -659,7 +652,6 @@ static void handle_expose_event(xcb_expose_event_t *event) {
|
||||||
draw_util_copy_surface(&(parent->frame_buffer), &(parent->frame),
|
draw_util_copy_surface(&(parent->frame_buffer), &(parent->frame),
|
||||||
0, 0, 0, 0, parent->rect.width, parent->rect.height);
|
0, 0, 0, 0, parent->rect.width, parent->rect.height);
|
||||||
xcb_flush(conn);
|
xcb_flush(conn);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#define _NET_WM_MOVERESIZE_SIZE_TOPLEFT 0
|
#define _NET_WM_MOVERESIZE_SIZE_TOPLEFT 0
|
||||||
|
@ -1243,7 +1235,6 @@ static void handle_focus_in(xcb_focus_in_event_t *event) {
|
||||||
/* We update focused_id because we don’t need to set focus again */
|
/* We update focused_id because we don’t need to set focus again */
|
||||||
focused_id = event->event;
|
focused_id = event->event;
|
||||||
tree_render();
|
tree_render();
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -39,8 +39,6 @@ int listen_fds;
|
||||||
* temporarily for drag_pointer(). */
|
* temporarily for drag_pointer(). */
|
||||||
static struct ev_prepare *xcb_prepare;
|
static struct ev_prepare *xcb_prepare;
|
||||||
|
|
||||||
extern Con *focused;
|
|
||||||
|
|
||||||
char **start_argv;
|
char **start_argv;
|
||||||
|
|
||||||
xcb_connection_t *conn;
|
xcb_connection_t *conn;
|
||||||
|
|
|
@ -664,5 +664,4 @@ geom_out:
|
||||||
free(geom);
|
free(geom);
|
||||||
out:
|
out:
|
||||||
free(attr);
|
free(attr);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -191,7 +191,7 @@ void start_application(const char *command, bool no_startup_id) {
|
||||||
if (!no_startup_id)
|
if (!no_startup_id)
|
||||||
sn_launcher_context_setup_child_process(context);
|
sn_launcher_context_setup_child_process(context);
|
||||||
|
|
||||||
execl(_PATH_BSHELL, _PATH_BSHELL, "-c", command, (void *)NULL);
|
execl(_PATH_BSHELL, _PATH_BSHELL, "-c", command, NULL);
|
||||||
/* not reached */
|
/* not reached */
|
||||||
}
|
}
|
||||||
_exit(0);
|
_exit(0);
|
||||||
|
|
Loading…
Reference in New Issue