aboutsummaryrefslogtreecommitdiff
path: root/include/rootston
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-01-21 18:46:19 -0500
committerTony Crisci <tony@dubstepdish.com>2018-01-21 18:46:19 -0500
commite8c407d00e9acaff27973af8df4eaf19b6571d88 (patch)
treef4ce520ae67e8274a38abdb1406faf51d10ae8c3 /include/rootston
parent54776dd19c20b0d0775a9426e811f81004a9a960 (diff)
rename wlr_deco_part to roots_deco_part
Diffstat (limited to 'include/rootston')
-rw-r--r--include/rootston/view.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/rootston/view.h b/include/rootston/view.h
index 77b78852..108a8267 100644
--- a/include/rootston/view.h
+++ b/include/rootston/view.h
@@ -135,15 +135,15 @@ void view_teardown(struct roots_view *view);
void view_get_deco_box(const struct roots_view *view, struct wlr_box *box);
-enum wlr_deco_part {
- WLR_DECO_PART_NONE = 0,
- WLR_DECO_PART_TOP_BORDER = (1 << 0),
- WLR_DECO_PART_BOTTOM_BORDER = (1 << 1),
- WLR_DECO_PART_LEFT_BORDER = (1 << 2),
- WLR_DECO_PART_RIGHT_BORDER = (1 << 3),
- WLR_DECO_PART_TITLEBAR = (1 << 4),
+enum roots_deco_part {
+ ROOTS_DECO_PART_NONE = 0,
+ ROOTS_DECO_PART_TOP_BORDER = (1 << 0),
+ ROOTS_DECO_PART_BOTTOM_BORDER = (1 << 1),
+ ROOTS_DECO_PART_LEFT_BORDER = (1 << 2),
+ ROOTS_DECO_PART_RIGHT_BORDER = (1 << 3),
+ ROOTS_DECO_PART_TITLEBAR = (1 << 4),
};
-enum wlr_deco_part view_get_deco_part(struct roots_view *view, double sx, double sy);
+enum roots_deco_part view_get_deco_part(struct roots_view *view, double sx, double sy);
#endif