summaryrefslogtreecommitdiff
path: root/src/frame.c
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2017-09-18 04:47:20 +0200
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2017-09-18 04:47:40 +0200
commitb57eea978b752cd347ecccfa76ea6333501af513 (patch)
tree8ea8333436a2c45dce61caae903fb3f7fa36ea09 /src/frame.c
parent1f8a8e447530376cae591029c6b8c523c9eab123 (diff)
downloadratpoison-b57eea978b752cd347ecccfa76ea6333501af513.zip
Delete more unused code
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/frame.c b/src/frame.c
index 95e4952..9ba7178 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -112,30 +112,6 @@ frame_resize_down (rp_frame *frame, int amount)
frame->height += amount;
}
-void
-frame_move_left (rp_frame *frame, int amount)
-{
- frame->x -= amount;
-}
-
-void
-frame_move_right (rp_frame *frame, int amount)
-{
- frame->x += amount;
-}
-
-void
-frame_move_up (rp_frame *frame, int amount)
-{
- frame->y -= amount;
-}
-
-void
-frame_move_down (rp_frame *frame, int amount)
-{
- frame->y += amount;
-}
-
static void
init_frame (rp_frame *f)
{