about summary refs log tree commit diff stats
path: root/src/command/command.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-04-21 17:35:57 +0100
committerJames Booth <boothj5@gmail.com>2013-04-21 17:35:57 +0100
commit345c21bbce2596591118ccd459c3104d49557ba0 (patch)
treedcb2a2a1c8ce64ee59f31e650d18660f2f15f188 /src/command/command.c
parent4257fc87e58d43dfc93117e68f0ce4970ffd3e65 (diff)
downloadprofani-tty-345c21bbce2596591118ccd459c3104d49557ba0.tar.gz
Renamed clear and close functions in ui
Diffstat (limited to 'src/command/command.c')
-rw-r--r--src/command/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/command.c b/src/command/command.c
index d0f13c8b..1775de2a 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -2302,7 +2302,7 @@ _cmd_tiny(gchar **args, struct cmd_help_t help)
 static gboolean
 _cmd_clear(gchar **args, struct cmd_help_t help)
 {
-    win_current_clear();
+    ui_clear_current();
     return TRUE;
 }
 
@@ -2338,7 +2338,7 @@ _cmd_close(gchar **args, struct cmd_help_t help)
     }
 
     // close the window
-    win_current_close();
+    ui_close_current();
 
     return TRUE;
 }