diff options
author | James Booth <boothj5@gmail.com> | 2013-01-28 01:17:46 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-01-28 01:17:46 +0000 |
commit | a63d0aff98a761cd4823cba03ece5b16f3e52458 (patch) | |
tree | 0cfb2bcd33f6f3a1fdeeb067cbfc51729daf3827 | |
parent | 09406ae3c6af74c2c1b9f1cf2b2f9861e55a86ae (diff) | |
download | profani-tty-a63d0aff98a761cd4823cba03ece5b16f3e52458.tar.gz |
Renamed UI related files
-rw-r--r-- | Makefile.am | 6 | ||||
-rw-r--r-- | src/ui_inputwin.c (renamed from src/input_win.c) | 2 | ||||
-rw-r--r-- | src/ui_statusbar.c (renamed from src/status_bar.c) | 2 | ||||
-rw-r--r-- | src/ui_titlebar.c (renamed from src/title_bar.c) | 2 | ||||
-rw-r--r-- | src/ui_windows.c (renamed from src/windows.c) | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index 0a6b95b0..5de143b6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,9 +1,9 @@ bin_PROGRAMS = profanity profanity_SOURCES = src/command.c src/contact.c src/history.c src/xmpp.h \ - src/preferences.c src/autocomplete.c src/status_bar.c \ + src/preferences.c src/autocomplete.c src/ui_statusbar.c \ src/command.h src/contact.h src/history.h src/log.c src/preferences.h \ - src/autocomplete.h src/title_bar.c src/windows.c src/common.c \ - src/contact_list.c src/input_win.c src/log.h src/profanity.c \ + src/autocomplete.h src/ui_titlebar.c src/ui_windows.c src/common.c \ + src/contact_list.c src/ui_inputwin.c src/log.h src/profanity.c \ src/prof_history.c src/ui.h src/common.h src/ contact_list.h src/xmpp_conn.c \ src/main.c src/profanity.h src/prof_history.h src/chat_log.c \ src/chat_log.h src/tinyurl.c src/tinyurl.h src/chat_session.c \ diff --git a/src/input_win.c b/src/ui_inputwin.c index 20971c0f..f4e70d95 100644 --- a/src/input_win.c +++ b/src/ui_inputwin.c @@ -1,5 +1,5 @@ /* - * input_win.c + * ui_inputwin.c * * Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com> * diff --git a/src/status_bar.c b/src/ui_statusbar.c index 34347572..9cc85108 100644 --- a/src/status_bar.c +++ b/src/ui_statusbar.c @@ -1,5 +1,5 @@ /* - * status_bar.c + * ui_statusbar.c * * Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com> * diff --git a/src/title_bar.c b/src/ui_titlebar.c index 29f02c55..17886a24 100644 --- a/src/title_bar.c +++ b/src/ui_titlebar.c @@ -1,5 +1,5 @@ /* - * title_bar.c + * ui_titlebar.c * * Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com> * diff --git a/src/windows.c b/src/ui_windows.c index 290bf6a1..ae47c85b 100644 --- a/src/windows.c +++ b/src/ui_windows.c @@ -1,5 +1,5 @@ /* - * windows.c + * ui_windows.c * * Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com> * |