diff options
author | James Booth <boothj5@gmail.com> | 2013-01-12 01:01:39 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-01-12 01:01:39 +0000 |
commit | dad01d8f84431141eb93cba1409c2a4c01620548 (patch) | |
tree | ffa073e761bb8cb23edced11d423461ac9edaed5 /src | |
parent | f8cc0c4d07cdf195372f554f2d1beeaf9182d977 (diff) | |
download | profani-tty-dad01d8f84431141eb93cba1409c2a4c01620548.tar.gz |
Renamed room_chat module to muc
Diffstat (limited to 'src')
-rw-r--r-- | src/command.c | 2 | ||||
-rw-r--r-- | src/jabber.c | 2 | ||||
-rw-r--r-- | src/muc.c (renamed from src/room_chat.c) | 2 | ||||
-rw-r--r-- | src/muc.h (renamed from src/room_chat.h) | 2 | ||||
-rw-r--r-- | src/profanity.c | 2 | ||||
-rw-r--r-- | src/windows.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/command.c b/src/command.c index 78a748aa..37b14ae1 100644 --- a/src/command.c +++ b/src/command.c @@ -41,7 +41,7 @@ #include "preferences.h" #include "prof_autocomplete.h" #include "profanity.h" -#include "room_chat.h" +#include "muc.h" #include "theme.h" #include "tinyurl.h" #include "ui.h" diff --git a/src/jabber.c b/src/jabber.c index fd3ae3ce..bc67d2c1 100644 --- a/src/jabber.c +++ b/src/jabber.c @@ -33,7 +33,7 @@ #include "log.h" #include "preferences.h" #include "profanity.h" -#include "room_chat.h" +#include "muc.h" #include "stanza.h" static struct _jabber_conn_t { diff --git a/src/room_chat.c b/src/muc.c index 4a4b7577..da9d6522 100644 --- a/src/room_chat.c +++ b/src/muc.c @@ -1,5 +1,5 @@ /* - * room_chat.c + * muc.c * * Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com> * diff --git a/src/room_chat.h b/src/muc.h index 64ce4a26..8a557ea3 100644 --- a/src/room_chat.h +++ b/src/muc.h @@ -1,5 +1,5 @@ /* - * room_chat.h + * muc.h * * Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com> * diff --git a/src/profanity.c b/src/profanity.c index 3bc624fd..4ca9a52a 100644 --- a/src/profanity.c +++ b/src/profanity.c @@ -41,7 +41,7 @@ #include "log.h" #include "preferences.h" #include "profanity.h" -#include "room_chat.h" +#include "muc.h" #include "theme.h" #include "jabber.h" #include "ui.h" diff --git a/src/windows.c b/src/windows.c index 034ef23b..869d6cbb 100644 --- a/src/windows.c +++ b/src/windows.c @@ -52,7 +52,7 @@ #include "log.h" #include "preferences.h" #include "release.h" -#include "room_chat.h" +#include "muc.h" #include "theme.h" #include "ui.h" #include "window.h" |