aboutsummaryrefslogtreecommitdiff
path: root/libindicate
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-07 11:44:47 -0500
committerTed Gould <ted@canonical.com>2009-04-07 11:44:47 -0500
commit98d4485b0fc2b41769d840da0707954489553e13 (patch)
treecd5112ba31c0735e7bfc8b44836ece8e76a0dc0c /libindicate
parent8b71317cc8da9aad7e856a6952555a226473d865 (diff)
parent7f23e1134f1696700e815433eb65a22c73b8fc66 (diff)
downloadlibayatana-indicator-98d4485b0fc2b41769d840da0707954489553e13.tar.gz
libayatana-indicator-98d4485b0fc2b41769d840da0707954489553e13.tar.bz2
libayatana-indicator-98d4485b0fc2b41769d840da0707954489553e13.zip
debian/control: Switching libindicate0 to libindicate1 to express
the fact that the binary compatibility is broken.
Diffstat (limited to 'libindicate')
-rw-r--r--libindicate/listener.c2
-rw-r--r--libindicate/server.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/libindicate/listener.c b/libindicate/listener.c
index e4fe68f..381a5f9 100644
--- a/libindicate/listener.c
+++ b/libindicate/listener.c
@@ -992,7 +992,7 @@ static void
interest_cb (DBusGProxy *proxy, GError *error, gpointer userdata)
{
if (error != NULL) {
- g_warning("Unable to configure interest on server %s because: %s", ((IndicateListenerServer *)userdata)->name, error->message);
+ g_warning("Unable to configure interest.");
}
return;
diff --git a/libindicate/server.c b/libindicate/server.c
index 520d47c..ed81d54 100644
--- a/libindicate/server.c
+++ b/libindicate/server.c
@@ -435,13 +435,13 @@ indicate_server_hide (IndicateServer * server)
static void
dbus_owner_change (DBusGProxy * proxy, const gchar * name, const gchar * prev, const gchar * new, IndicateServer * server)
{
- g_debug("DBus Owner change (%s, %s, %s)", name, prev, new);
+ /* g_debug("DBus Owner change (%s, %s, %s)", name, prev, new); */
if (prev == NULL || prev[0] == '\0') {
/* We only care about people leaving the bus */
return;
}
- g_debug("\tBeing removed, interesting");
+ /* g_debug("\tBeing removed, interesting"); */
IndicateServerPrivate * priv = INDICATE_SERVER_GET_PRIVATE(server);
IndicateServerInterestedFolk searchitem;
@@ -449,7 +449,7 @@ dbus_owner_change (DBusGProxy * proxy, const gchar * name, const gchar * prev, c
GList * entry = g_list_find_custom(priv->interestedfolks, &searchitem, indicate_server_interested_folks_equal);
if (entry == NULL) {
- g_debug("\tWe don't have it, not interesting");
+ /* g_debug("\tWe don't have it, not interesting"); */
return;
}
@@ -464,16 +464,16 @@ dbus_owner_change (DBusGProxy * proxy, const gchar * name, const gchar * prev, c
GList * listi = NULL;
for (listi = priv->interestedfolks ; listi != NULL ; listi = listi->next) {
IndicateServerInterestedFolk * folkpointer = (IndicateServerInterestedFolk *)listi->data;
- g_debug("\tRebuild list from folk: %s", folkpointer->sender);
+ /* g_debug("\tRebuild list from folk: %s", folkpointer->sender); */
indicate_server_interested_folks_copy(folkpointer, priv->interests);
}
for (i = INDICATE_INTEREST_NONE; i < INDICATE_INTEREST_LAST; i++) {
- g_debug("\tComparing interests. Interest: %d Folk: %d Everyone: %d", i, folk->interests[i], priv->interests[i]);
+ /* g_debug("\tComparing interests. Interest: %d Folk: %d Everyone: %d", i, folk->interests[i], priv->interests[i]); */
if (folk->interests[i] && !priv->interests[i]) {
/* We can only remove interest here. Think about it for a
moment and I think you'll be cool with it. */
- g_debug("\tOh, and it was interested in %d. Not anymore.", i);
+ /* g_debug("\tOh, and it was interested in %d. Not anymore.", i); */
g_signal_emit(G_OBJECT(server), signals[INTEREST_REMOVED], 0, i, TRUE);
}
}