aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-11-22 00:13:30 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-11-22 00:13:30 +0800
commit9120bdaa6ae7f8bfb355f6c2ac1270b35705dd45 (patch)
treeb1ff66a2178e8f7fe44056619acb92e86c1d800e
parent3cacb154476f158685700a4b3aae5e5c06cc173d (diff)
downloadgsoc2013-empathy-9120bdaa6ae7f8bfb355f6c2ac1270b35705dd45.tar
gsoc2013-empathy-9120bdaa6ae7f8bfb355f6c2ac1270b35705dd45.tar.gz
gsoc2013-empathy-9120bdaa6ae7f8bfb355f6c2ac1270b35705dd45.tar.bz2
gsoc2013-empathy-9120bdaa6ae7f8bfb355f6c2ac1270b35705dd45.tar.lz
gsoc2013-empathy-9120bdaa6ae7f8bfb355f6c2ac1270b35705dd45.tar.xz
gsoc2013-empathy-9120bdaa6ae7f8bfb355f6c2ac1270b35705dd45.tar.zst
gsoc2013-empathy-9120bdaa6ae7f8bfb355f6c2ac1270b35705dd45.zip
Added file transfer debug flag. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@1735 4ee84921-47dd-4033-b63a-18d7a039a3e4
-rw-r--r--libempathy/empathy-debug.c1
-rw-r--r--libempathy/empathy-debug.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/libempathy/empathy-debug.c b/libempathy/empathy-debug.c
index b0f7d1810..ec72bfcfc 100644
--- a/libempathy/empathy-debug.c
+++ b/libempathy/empathy-debug.c
@@ -44,6 +44,7 @@ static GDebugKey keys[] = {
{ "Account", EMPATHY_DEBUG_ACCOUNT },
{ "Irc", EMPATHY_DEBUG_IRC },
{ "Dispatcher", EMPATHY_DEBUG_DISPATCHER },
+ { "Ft", EMPATHY_DEBUG_FT },
{ "Other", EMPATHY_DEBUG_OTHER },
{ 0, }
};
diff --git a/libempathy/empathy-debug.h b/libempathy/empathy-debug.h
index 42403ca15..8b68fd24d 100644
--- a/libempathy/empathy-debug.h
+++ b/libempathy/empathy-debug.h
@@ -38,7 +38,8 @@ typedef enum
EMPATHY_DEBUG_ACCOUNT = 1 << 4,
EMPATHY_DEBUG_IRC = 1 << 5,
EMPATHY_DEBUG_DISPATCHER = 1 << 6,
- EMPATHY_DEBUG_OTHER = 1 << 7,
+ EMPATHY_DEBUG_FT = 1 << 7,
+ EMPATHY_DEBUG_OTHER = 1 << 8,
} EmpathyDebugFlags;
gboolean empathy_debug_flag_is_set (EmpathyDebugFlags flag);