fixed tf (typo?)

This commit is contained in:
Anselm R. Garbe 2006-06-30 14:18:26 +02:00
parent 281e1fb5ab
commit 80c337d10c
1 changed files with 3 additions and 3 deletions

View File

@ -347,7 +347,7 @@ static void
drop_move(Frame *f, XRectangle *new, XPoint *pt)
{
Area *tgt, *src;
Frame *ft, *tf;
Frame *ft;
View *v;
tgt = nil;
@ -385,7 +385,7 @@ drop_move(Frame *f, XRectangle *new, XPoint *pt)
remove_frame(f);
if(before)
insert_frame(tf, f, True);
insert_frame(ft, f, True);
else
insert_frame(ft, f, False);
@ -398,7 +398,7 @@ drop_move(Frame *f, XRectangle *new, XPoint *pt)
remove_frame(f);
if(pt->y < (ft->rect.y + ft->rect.height / 2))
insert_frame(tf, f, True);
insert_frame(ft, f, True);
else
insert_frame(ft, f, False);