diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.co.uk> | 2011-05-03 20:23:57 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.co.uk> | 2011-05-03 20:31:44 -0400 |
commit | 01c93ae3a7c68a04b8caa3deb26168857d996313 (patch) | |
tree | 170460764b7ade7d2304cef909ee3246edac5249 | |
parent | c05b106fb723bad6c70e5880c15e9be6d53ff6e7 (diff) |
Cleanup includes fixing usage of " and <
-rw-r--r-- | telepathy-logger/log-store-xml.c | 23 | ||||
-rw-r--r-- | tests/dbus/test-log-manager.c | 9 |
2 files changed, 16 insertions, 16 deletions
diff --git a/telepathy-logger/log-store-xml.c b/telepathy-logger/log-store-xml.c index 269829c..ba0cd60 100644 --- a/telepathy-logger/log-store-xml.c +++ b/telepathy-logger/log-store-xml.c @@ -38,19 +38,20 @@ #include <telepathy-glib/dbus.h> #include <telepathy-glib/defs.h> #include <telepathy-glib/util.h> -#include <telepathy-logger/call-event.h> -#include <telepathy-logger/call-event-internal.h> -#include <telepathy-logger/event-internal.h> -#include <telepathy-logger/text-event.h> -#include <telepathy-logger/text-event-internal.h> -#include <telepathy-logger/log-manager.h> -#include <telepathy-logger/log-store-internal.h> -#include <telepathy-logger/log-manager-internal.h> + +#include "telepathy-logger/call-event.h" +#include "telepathy-logger/call-event-internal.h" +#include "telepathy-logger/entity-internal.h" +#include "telepathy-logger/event-internal.h" +#include "telepathy-logger/text-event.h" +#include "telepathy-logger/text-event-internal.h" +#include "telepathy-logger/log-manager.h" +#include "telepathy-logger/log-store-internal.h" +#include "telepathy-logger/log-manager-internal.h" +#include "telepathy-logger/util-internal.h" #define DEBUG_FLAG TPL_DEBUG_LOG_STORE -#include <telepathy-logger/entity-internal.h> -#include <telepathy-logger/debug-internal.h> -#include <telepathy-logger/util-internal.h> +#include "telepathy-logger/debug-internal.h" #define LOG_DIR_CREATE_MODE (S_IRUSR | S_IWUSR | S_IXUSR) #define LOG_FILE_CREATE_MODE (S_IRUSR | S_IWUSR) diff --git a/tests/dbus/test-log-manager.c b/tests/dbus/test-log-manager.c index 7cf4b30..8feae12 100644 --- a/tests/dbus/test-log-manager.c +++ b/tests/dbus/test-log-manager.c @@ -4,16 +4,15 @@ #include "lib/simple-account.h" #include "lib/simple-account-manager.h" -#include <telepathy-logger/debug-internal.h> -#include <telepathy-logger/log-manager-internal.h> -#include <telepathy-logger/log-store-internal.h> +#include "telepathy-logger/debug-internal.h" +#include "telepathy-logger/log-manager-internal.h" +#include "telepathy-logger/log-store-internal.h" #include <telepathy-glib/debug-sender.h> -/* it was defined in telepathy-logger/log-store-pidgin.c */ +/* it was defined in telepathy-logger/log-manager.c */ #undef DEBUG_FLAG #define DEBUG_FLAG TPL_DEBUG_TESTSUITE -#include <telepathy-logger/debug-internal.h> #define ACCOUNT_PATH_JABBER TP_ACCOUNT_OBJECT_PATH_BASE "gabble/jabber/user_40collabora_2eco_2euk" #define MY_ID "user@collabora.co.uk" |