aboutsummaryrefslogtreecommitdiff
path: root/xwayland/selection/selection.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-04-26 11:18:01 +0200
committerGitHub <noreply@github.com>2018-04-26 11:18:01 +0200
commitfac2c3e25fb77a9bc934c21bc172db6d0475d751 (patch)
treef25a9f5c082e3666ae83f83f908068a7ce7155a1 /xwayland/selection/selection.c
parent31857c9ed40a6bf34273b0459d2aa604642d1807 (diff)
parent625a7a48dc9f348a7556b03dd3c10a6a7d9c6037 (diff)
Merge pull request #882 from emersion/unprefix-local-symbols
Remove wlr_ prefix from local symbols
Diffstat (limited to 'xwayland/selection/selection.c')
-rw-r--r--xwayland/selection/selection.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xwayland/selection/selection.c b/xwayland/selection/selection.c
index 39c47c45..6b57f7c3 100644
--- a/xwayland/selection/selection.c
+++ b/xwayland/selection/selection.c
@@ -223,13 +223,13 @@ void xwm_selection_finish(struct wlr_xwm *xwm) {
}
if (xwm->seat) {
if (xwm->seat->selection_source &&
- wlr_data_source_is_xwayland_data_source(
+ data_source_is_xwayland(
xwm->seat->selection_source)) {
wlr_seat_set_selection(xwm->seat, NULL,
wl_display_next_serial(xwm->xwayland->wl_display));
}
if (xwm->seat->primary_selection_source &&
- wlr_primary_selection_source_is_xwayland_primary_selection_source(
+ primary_selection_source_is_xwayland(
xwm->seat->primary_selection_source)) {
wlr_seat_set_primary_selection(xwm->seat, NULL,
wl_display_next_serial(xwm->xwayland->wl_display));
@@ -262,7 +262,7 @@ static void seat_handle_selection(struct wl_listener *listener,
wl_container_of(listener, xwm, seat_selection);
struct wlr_data_source *source = seat->selection_source;
- if (source != NULL && wlr_data_source_is_xwayland_data_source(source)) {
+ if (source != NULL && data_source_is_xwayland(source)) {
return;
}
@@ -277,7 +277,7 @@ static void seat_handle_primary_selection(struct wl_listener *listener,
struct wlr_primary_selection_source *source = seat->primary_selection_source;
if (source != NULL &&
- wlr_primary_selection_source_is_xwayland_primary_selection_source(
+ primary_selection_source_is_xwayland(
source)) {
return;
}