diff options
author | James Booth <boothj5@gmail.com> | 2016-07-24 15:43:51 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-07-24 15:43:51 +0100 |
commit | 0a57c4de78f8a3cd4efb631a79b000b42f16fc15 (patch) | |
tree | 39b0597b73f42f018b0006a1816cd76f56213e64 /src/otr | |
parent | 5bc38b6bc2bdf135d7f483c204ce75a51a7126b5 (diff) | |
download | profani-tty-0a57c4de78f8a3cd4efb631a79b000b42f16fc15.tar.gz |
Tidy headers
Diffstat (limited to 'src/otr')
-rw-r--r-- | src/otr/otr.c | 10 | ||||
-rw-r--r-- | src/otr/otrlibv3.c | 4 | ||||
-rw-r--r-- | src/otr/otrlibv4.c | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/src/otr/otr.c b/src/otr/otr.c index 27bd171b..343bdcbc 100644 --- a/src/otr/otr.c +++ b/src/otr/otr.c @@ -38,16 +38,16 @@ #include <libotr/sm.h> #include <glib.h> +#include "log.h" +#include "config/preferences.h" #include "otr/otr.h" #include "otr/otrlib.h" -#include "log.h" -#include "xmpp/roster_list.h" +#include "ui/ui.h" #include "ui/window_list.h" +#include "xmpp/chat_session.h" +#include "xmpp/roster_list.h" #include "xmpp/contact.h" -#include "ui/ui.h" #include "xmpp/xmpp.h" -#include "config/preferences.h" -#include "xmpp/chat_session.h" #define PRESENCE_ONLINE 1 #define PRESENCE_OFFLINE 0 diff --git a/src/otr/otrlibv3.c b/src/otr/otrlibv3.c index 81b9cc5b..4f7a6135 100644 --- a/src/otr/otrlibv3.c +++ b/src/otr/otrlibv3.c @@ -35,10 +35,10 @@ #include <libotr/privkey.h> #include <libotr/message.h> -#include "ui/ui.h" -#include "window_list.h" #include "otr/otr.h" #include "otr/otrlib.h" +#include "ui/ui.h" +#include "ui/window_list.h" OtrlPolicy otrlib_policy(void) diff --git a/src/otr/otrlibv4.c b/src/otr/otrlibv4.c index 74166808..ab39e81c 100644 --- a/src/otr/otrlibv4.c +++ b/src/otr/otrlibv4.c @@ -36,11 +36,11 @@ #include <libotr/privkey.h> #include <libotr/message.h> -#include "ui/ui.h" -#include "ui/window_list.h" #include "log.h" #include "otr/otr.h" #include "otr/otrlib.h" +#include "ui/ui.h" +#include "ui/window_list.h" static GTimer *timer; static unsigned int current_interval; |