about summary refs log tree commit diff
path: root/keyboard.h
diff options
context:
space:
mode:
authorStacy Harper <contact@stacyharper.net>2021-08-25 21:43:21 +0200
committerJohn Sullivan <jsullivan@csumb.edu>2021-10-19 23:12:01 -0700
commit4ef8af17ee62f4e99f8d71ccfec5f264f5851db9 (patch)
treefbf9c0f4fe0daac8df6be31b2c4f5b4bb59a54f3 /keyboard.h
parent311ff7e23b204bea495b3a9a8743b464a241d274 (diff)
downloadsuggpicker-4ef8af17ee62f4e99f8d71ccfec5f264f5851db9.tar.gz
Rename var name
Diffstat (limited to 'keyboard.h')
-rw-r--r--keyboard.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboard.h b/keyboard.h
index ce5b0e2..a8e5c69 100644
--- a/keyboard.h
+++ b/keyboard.h
@@ -89,7 +89,7 @@ struct kbd {
 	struct zwp_virtual_keyboard_v1 *vkbd;
 };
 
-static inline void draw_inset(struct drwsurf *d, uint32_t x, uint32_t y,
+static inline void draw_inset(struct drwsurf *ds, uint32_t x, uint32_t y,
                               uint32_t width, uint32_t height, uint32_t border,
                               Color color);
 
@@ -444,8 +444,8 @@ kbd_resize(struct kbd *kb, struct layout *layouts, uint8_t layoutcount) {
 }
 
 void
-draw_inset(struct drwsurf *d, uint32_t x, uint32_t y, uint32_t width,
+draw_inset(struct drwsurf *ds, uint32_t x, uint32_t y, uint32_t width,
            uint32_t height, uint32_t border, Color color) {
-	drw_fill_rectangle(d, color, x + border, y + border, width - border,
+	drw_fill_rectangle(ds, color, x + border, y + border, width - border,
 	                   height - border);
 }