aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-05-11 01:07:52 +0800
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-20 18:03:06 +0800
commite5783e685c3db89d4791c2f31a75c4204d1cb4a7 (patch)
treed27076872a09f6b4a7c8023b72f265a2117ddc17
parent95684ec0c1ec4c598fdc29a3fd366ff5e7e2e1b2 (diff)
downloadgsoc2013-empathy-e5783e685c3db89d4791c2f31a75c4204d1cb4a7.tar
gsoc2013-empathy-e5783e685c3db89d4791c2f31a75c4204d1cb4a7.tar.gz
gsoc2013-empathy-e5783e685c3db89d4791c2f31a75c4204d1cb4a7.tar.bz2
gsoc2013-empathy-e5783e685c3db89d4791c2f31a75c4204d1cb4a7.tar.lz
gsoc2013-empathy-e5783e685c3db89d4791c2f31a75c4204d1cb4a7.tar.xz
gsoc2013-empathy-e5783e685c3db89d4791c2f31a75c4204d1cb4a7.tar.zst
gsoc2013-empathy-e5783e685c3db89d4791c2f31a75c4204d1cb4a7.zip
tpaw-debug: remove unused debug keys
https://bugzilla.gnome.org/show_bug.cgi?id=699492
-rw-r--r--tp-account-widgets/tpaw-debug.c13
-rw-r--r--tp-account-widgets/tpaw-debug.h21
2 files changed, 4 insertions, 30 deletions
diff --git a/tp-account-widgets/tpaw-debug.c b/tp-account-widgets/tpaw-debug.c
index ee30b0e00..0e05a2d29 100644
--- a/tp-account-widgets/tpaw-debug.c
+++ b/tp-account-widgets/tpaw-debug.c
@@ -26,22 +26,9 @@
static TpawDebugFlags flags = 0;
static GDebugKey keys[] = {
- { "Tp", TPAW_DEBUG_TP },
- { "Chat", TPAW_DEBUG_CHAT },
- { "Contact", TPAW_DEBUG_CONTACT },
{ "Account", TPAW_DEBUG_ACCOUNT },
{ "Irc", TPAW_DEBUG_IRC },
- { "Dispatcher", TPAW_DEBUG_DISPATCHER },
- { "Ft", TPAW_DEBUG_FT },
- { "Location", TPAW_DEBUG_LOCATION },
{ "Other", TPAW_DEBUG_OTHER },
- { "Connectivity", TPAW_DEBUG_CONNECTIVITY },
- { "ImportMc4Accounts", TPAW_DEBUG_IMPORT_MC4_ACCOUNTS },
- { "Tests", TPAW_DEBUG_TESTS },
- { "Voip", TPAW_DEBUG_VOIP },
- { "Tls", TPAW_DEBUG_TLS },
- { "Sasl", TPAW_DEBUG_SASL },
- { "Camera", TPAW_DEBUG_CAMERA },
{ 0, }
};
diff --git a/tp-account-widgets/tpaw-debug.h b/tp-account-widgets/tpaw-debug.h
index d4b44f7cd..51ed827a6 100644
--- a/tp-account-widgets/tpaw-debug.h
+++ b/tp-account-widgets/tpaw-debug.h
@@ -29,23 +29,10 @@ G_BEGIN_DECLS
/* Please keep this enum in sync with #keys in tpaw-debug.c */
typedef enum
{
- TPAW_DEBUG_TP = 1 << 1,
- TPAW_DEBUG_CHAT = 1 << 2,
- TPAW_DEBUG_CONTACT = 1 << 3,
- TPAW_DEBUG_ACCOUNT = 1 << 4,
- TPAW_DEBUG_IRC = 1 << 5,
- TPAW_DEBUG_DISPATCHER = 1 << 6,
- TPAW_DEBUG_FT = 1 << 7,
- TPAW_DEBUG_LOCATION = 1 << 8,
- TPAW_DEBUG_OTHER = 1 << 9,
- TPAW_DEBUG_SHARE_DESKTOP = 1 << 10,
- TPAW_DEBUG_CONNECTIVITY = 1 << 11,
- TPAW_DEBUG_IMPORT_MC4_ACCOUNTS = 1 << 11,
- TPAW_DEBUG_TESTS = 1 << 12,
- TPAW_DEBUG_VOIP = 1 << 13,
- TPAW_DEBUG_TLS = 1 << 14,
- TPAW_DEBUG_SASL = 1 << 15,
- TPAW_DEBUG_CAMERA = 1 << 16,
+ TPAW_DEBUG_CONTACT = 1 << 1,
+ TPAW_DEBUG_ACCOUNT = 1 << 2,
+ TPAW_DEBUG_IRC = 1 << 3,
+ TPAW_DEBUG_OTHER = 1 << 4,
} TpawDebugFlags;
gboolean tpaw_debug_flag_is_set (TpawDebugFlags flag);