summaryrefslogtreecommitdiff
path: root/src/frame.c
diff options
context:
space:
mode:
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)
{