aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2012-05-31 12:59:24 -0500
committerCharles Kerr <charles.kerr@canonical.com>2012-05-31 12:59:24 -0500
commit89c515defeb4403ec9452221f130be1007e0c7df (patch)
tree5885e7e23839f234dce0ba086f6859193dbb57cb /src
parentab87d8f8eaf75dda49dbd6e9ef56bf94dcf98e28 (diff)
downloadayatana-indicator-power-89c515defeb4403ec9452221f130be1007e0c7df.tar.gz
ayatana-indicator-power-89c515defeb4403ec9452221f130be1007e0c7df.tar.bz2
ayatana-indicator-power-89c515defeb4403ec9452221f130be1007e0c7df.zip
remove some g_message() calls that shouldn't've been committed.
Diffstat (limited to 'src')
-rw-r--r--src/dbus-listener.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/dbus-listener.c b/src/dbus-listener.c
index bc31ee3..feaf78e 100644
--- a/src/dbus-listener.c
+++ b/src/dbus-listener.c
@@ -127,7 +127,6 @@ get_devices_cb (GObject * source_object,
GSList * devices = NULL;
GVariant * devices_container;
IndicatorPowerDbusListener * self = INDICATOR_POWER_DBUS_LISTENER (user_data);
-g_message ("%s", G_STRLOC);
/* build an array of IndicatorPowerDevices from the DBus response */
error = NULL;
@@ -164,7 +163,6 @@ g_message ("%s", G_STRLOC);
static void
request_device_list (IndicatorPowerDbusListener * self)
{
-g_message ("calling GetDevices... self %p priv %p proxy %p", self, self->priv, self->priv->proxy);
g_dbus_proxy_call (self->priv->proxy,
"GetDevices",
NULL,
@@ -181,8 +179,6 @@ receive_properties_changed (GDBusProxy *proxy G_GNUC_UNUSED,
GStrv invalidated_properties G_GNUC_UNUSED,
gpointer user_data)
{
-g_message ("properties changed: %p %p %p %p", proxy, changed_properties, invalidated_properties, user_data);
-g_message ("hey someone told me the properties changed");
request_device_list (INDICATOR_POWER_DBUS_LISTENER(user_data));
}
@@ -204,7 +200,6 @@ service_proxy_cb (GObject *object,
return;
}
-g_message ("registering for g-properties-changed callback");
/* we want to change the primary device changes */
g_signal_connect (priv->proxy,
"g-properties-changed",