summaryrefslogtreecommitdiff
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c
index f028f0f..c93e8af 100644
--- a/src/process.c
+++ b/src/process.c
@@ -5278,7 +5278,7 @@ DoAction(struct action *act, int key)
}
if (lay == D_layout)
break;
- LoadLayout(lay, &D_canvas);
+ LoadLayout(lay);
Activate(-1);
}
else if (!strcmp(args[0], "prev"))
@@ -5306,7 +5306,7 @@ DoAction(struct action *act, int key)
}
if (lay == D_layout)
break;
- LoadLayout(lay, &D_canvas);
+ LoadLayout(lay);
Activate(-1);
}
else if (!strcmp(args[0], "attach"))
@@ -6650,7 +6650,7 @@ SelectLayoutFin(char *buf, int len, char *data)
return;
if (len == 1 && *buf == '-')
{
- LoadLayout((struct layout *)0, (struct canvas *)0);
+ LoadLayout((struct layout *)0);
Activate(0);
return;
}
@@ -6661,7 +6661,7 @@ SelectLayoutFin(char *buf, int len, char *data)
Msg(0, "This IS layout %d (%s).\n", lay->lay_number, lay->lay_title);
else
{
- LoadLayout(lay, &D_canvas);
+ LoadLayout(lay);
Activate(0);
}
}