about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-01-12 01:01:39 +0000
committerJames Booth <boothj5@gmail.com>2013-01-12 01:01:39 +0000
commitdad01d8f84431141eb93cba1409c2a4c01620548 (patch)
treeffa073e761bb8cb23edced11d423461ac9edaed5
parentf8cc0c4d07cdf195372f554f2d1beeaf9182d977 (diff)
downloadprofani-tty-dad01d8f84431141eb93cba1409c2a4c01620548.tar.gz
Renamed room_chat module to muc
-rw-r--r--Makefile.am4
-rw-r--r--src/command.c2
-rw-r--r--src/jabber.c2
-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.c2
-rw-r--r--src/windows.c2
7 files changed, 8 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am
index a5bf1240..14d0cf33 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -7,8 +7,8 @@ profanity_SOURCES = src/command.c src/contact.c src/history.c src/jabber.h \
 	src/prof_history.c src/ui.h src/common.h src/ contact_list.h src/jabber.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 \
-	src/chat_session.h src/release.c src/release.h src/room_chat.c \
-	src/room_chat.h src/stanza.c src/stanza.h src/parser.c src/parser.h \
+	src/chat_session.h src/release.c src/release.h src/muc.c \
+	src/muc.h src/stanza.c src/stanza.h src/parser.c src/parser.h \
 	src/theme.c src/theme.h src/window.c src/window.h src/xdg_base.c \
 	src/xdg_base.h src/files.c src/files.h src/accounts.c src/accounts.h
 
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"