From f3db938ded8210956d492d7c42df1793893e5cbe Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Thu, 21 Feb 2019 23:16:20 -0500 Subject: Replace "view" with "window" I think originally I didn't want to use the same word as curses WINDOW but it's really much clearer for the user if they're just called windows. UI code probably needs yet another rewrite though. Still feels messy. --- chat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chat.h') diff --git a/chat.h b/chat.h index 441056c..bd889f4 100644 --- a/chat.h +++ b/chat.h @@ -121,8 +121,8 @@ void uiDraw(void); void uiRead(void); void uiPrompt(void); -void uiViewTag(struct Tag tag); -void uiViewNum(int num); +void uiWindowTag(struct Tag tag); +void uiWindowNum(int num); void uiCloseTag(struct Tag tag); enum UIHeat { -- cgit 1.4.1