about summary refs log tree commit diff stats
path: root/src/command
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-11-02 21:05:21 +0000
committerJames Booth <boothj5@gmail.com>2015-11-02 21:05:21 +0000
commitbcd19c6d16a3ff6892ad6aa41b68a2f97277239d (patch)
tree504fb39076709f3e208027f8ecac6f3bc7600744 /src/command
parentdf5b93987f3a157e49b3d9078044fd0d0e88f17c (diff)
downloadprofani-tty-bcd19c6d16a3ff6892ad6aa41b68a2f97277239d.tar.gz
Removed ui_swap_wins
Diffstat (limited to 'src/command')
-rw-r--r--src/command/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/commands.c b/src/command/commands.c
index a5718eb8..8d0aeac9 100644
--- a/src/command/commands.c
+++ b/src/command/commands.c
@@ -875,7 +875,7 @@ cmd_wins(ProfWin *window, const char *const command, gchar **args)
             } else if (source_win == 10 || target_win == 10) {
                 cons_show("Window 10 does not exist");
             } else if (source_win != target_win) {
-                gboolean swapped = ui_swap_wins(source_win, target_win);
+                gboolean swapped = wins_swap(source_win, target_win);
                 if (swapped) {
                     cons_show("Swapped windows %d <-> %d", source_win, target_win);
                 } else {