removed viewnext/viewprev

This commit is contained in:
Anselm R.Garbe
2006-08-14 08:38:26 +02:00
parent 2c66b422e7
commit 4cb78a170c
6 changed files with 9 additions and 65 deletions

20
tag.c
View File

@ -263,23 +263,3 @@ toggleview(Arg *arg)
arrange(NULL);
drawall();
}
void
viewnext(Arg *arg)
{
unsigned int i;
for(i = 0; !seltag[i]; i++);
arg->i = (i < ntags-1) ? i+1 : 0;
view(arg);
}
void
viewprev(Arg *arg)
{
unsigned int i;
for(i = 0; !seltag[i]; i++);
arg->i = (i > 0) ? i-1 : ntags-1;
view(arg);
}