diff options
author | James Booth <boothj5@gmail.com> | 2013-02-02 21:59:29 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-02-02 21:59:29 +0000 |
commit | 9d34c41227cb7567b26872f2a10a8f7a1b01f487 (patch) | |
tree | 5068fecb975441b50b73500ef652cf368c675b6a /src/xmpp | |
parent | 740e5b422832f8d043d96f33a0d33bf1725dbbc0 (diff) | |
download | profani-tty-9d34c41227cb7567b26872f2a10a8f7a1b01f487.tar.gz |
Added config dir to source
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/connection.c | 2 | ||||
-rw-r--r-- | src/xmpp/message.c | 2 | ||||
-rw-r--r-- | src/xmpp/presence.c | 2 | ||||
-rw-r--r-- | src/xmpp/xmpp.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c index 93512f5e..57528bb6 100644 --- a/src/xmpp/connection.c +++ b/src/xmpp/connection.c @@ -28,11 +28,11 @@ #include "chat_session.h" #include "common.h" +#include "config/preferences.h" #include "contact_list.h" #include "jid.h" #include "log.h" #include "muc.h" -#include "preferences.h" #include "profanity.h" #include "xmpp/iq.h" #include "xmpp/message.h" diff --git a/src/xmpp/message.c b/src/xmpp/message.c index 42769cf7..b20d773b 100644 --- a/src/xmpp/message.c +++ b/src/xmpp/message.c @@ -26,9 +26,9 @@ #include <strophe.h> #include "chat_session.h" +#include "config/preferences.h" #include "log.h" #include "muc.h" -#include "preferences.h" #include "profanity.h" #include "xmpp/message.h" #include "xmpp/stanza.h" diff --git a/src/xmpp/presence.c b/src/xmpp/presence.c index f4631b12..7fd58df6 100644 --- a/src/xmpp/presence.c +++ b/src/xmpp/presence.c @@ -26,9 +26,9 @@ #include <glib.h> #include "common.h" +#include "config/preferences.h" #include "log.h" #include "muc.h" -#include "preferences.h" #include "profanity.h" #include "xmpp/capabilities.h" #include "xmpp/stanza.h" diff --git a/src/xmpp/xmpp.h b/src/xmpp/xmpp.h index ab22d191..d81be248 100644 --- a/src/xmpp/xmpp.h +++ b/src/xmpp/xmpp.h @@ -25,7 +25,7 @@ #include <strophe.h> -#include "accounts.h" +#include "config/accounts.h" #include "jid.h" #define JABBER_PRIORITY_MIN -128 |