removed codebody
svn path=/trunk/kdebase/kwin/; revision=380838
This commit is contained in:
parent
2e82e1fc66
commit
bb92b37e08
1 changed files with 0 additions and 4 deletions
|
@ -355,7 +355,6 @@ run_fades (Display *dpy)
|
|||
int now = get_time_in_milliseconds();
|
||||
fade *f, *next;
|
||||
int steps;
|
||||
Bool last;
|
||||
|
||||
#if 0
|
||||
printf ("run fades\n");
|
||||
|
@ -365,7 +364,6 @@ run_fades (Display *dpy)
|
|||
steps = 1 + (now - fade_time) / fade_delta;
|
||||
for (next = fades; f = next; )
|
||||
{
|
||||
last = False;
|
||||
win *w = f->w;
|
||||
next = f->next;
|
||||
f->cur += f->step * steps;
|
||||
|
@ -382,7 +380,6 @@ run_fades (Display *dpy)
|
|||
if (f->cur >= f->finish)
|
||||
{
|
||||
w->opacity = f->finish*OPAQUE;
|
||||
last = True;
|
||||
dequeue_fade (dpy, f);
|
||||
}
|
||||
}
|
||||
|
@ -391,7 +388,6 @@ run_fades (Display *dpy)
|
|||
if (f->cur <= f->finish)
|
||||
{
|
||||
w->opacity = f->finish*OPAQUE;
|
||||
last = True;
|
||||
dequeue_fade (dpy, f);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue