diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-07-21 12:10:41 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-07-21 12:10:41 -0500 |
commit | 7b3b8a27aa6e0a9a10f6faec1cd13b10f5b2492a (patch) | |
tree | eb27599c6142fbba202e4c2dcb7b8c91d8838c92 /src/notifier.c | |
parent | bc32a96ee2d776eb2cf1af6e67f940afad589dce (diff) | |
download | ayatana-indicator-power-7b3b8a27aa6e0a9a10f6faec1cd13b10f5b2492a.tar.gz ayatana-indicator-power-7b3b8a27aa6e0a9a10f6faec1cd13b10f5b2492a.tar.bz2 ayatana-indicator-power-7b3b8a27aa6e0a9a10f6faec1cd13b10f5b2492a.zip |
fix build issues
Diffstat (limited to 'src/notifier.c')
-rw-r--r-- | src/notifier.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/notifier.c b/src/notifier.c index d32008f..1d9428c 100644 --- a/src/notifier.c +++ b/src/notifier.c @@ -17,7 +17,7 @@ * Charles Kerr <charles.kerr@canonical.com> */ -#include "dbus-battery-info.h" +#include "dbus-battery.h" #include "dbus-shared.h" #include "notifier.h" @@ -57,8 +57,6 @@ static int n_notifiers = 0; struct _IndicatorPowerNotifierPrivate { - IndicatorPowerDeviceProvider * device_provider; - /* The battery we're currently watching. This may be a physical battery or it may be a "merged" battery synthesized from multiple batteries present on the device. @@ -77,6 +75,9 @@ struct _IndicatorPowerNotifierPrivate typedef IndicatorPowerNotifierPrivate priv_t; +static void set_is_warning_property (IndicatorPowerNotifier*, gboolean is_warning); +static void set_power_level_property (IndicatorPowerNotifier*, PowerLevel power_level); + /*** **** Notifications ***/ @@ -262,7 +263,7 @@ my_dispose (GObject * o) indicator_power_notifier_set_bus (self, NULL); notification_clear (self); - indicator_power_notifier_set_device (self, NULL); + indicator_power_notifier_set_battery (self, NULL); g_clear_pointer (&p->power_level_binding, g_binding_unbind); g_clear_pointer (&p->is_warning_binding, g_binding_unbind); g_clear_object (&p->dbus_battery); @@ -352,7 +353,7 @@ indicator_power_notifier_class_init (IndicatorPowerNotifierClass * klass) ***/ IndicatorPowerNotifier * -indicator_power_notifier_new (IndicatorPowerDeviceProvider * device_provider) +indicator_power_notifier_new (void) { GObject * o = g_object_new (INDICATOR_TYPE_POWER_NOTIFIER, NULL); @@ -369,6 +370,8 @@ indicator_power_notifier_set_battery (IndicatorPowerNotifier * self, g_return_if_fail((battery == NULL) || INDICATOR_IS_POWER_DEVICE(battery)); g_return_if_fail((battery == NULL) || (indicator_power_device_get_kind(battery) == UP_DEVICE_KIND_BATTERY)); + p = self->priv; + if (p->battery != NULL) { g_clear_object (&p->battery); |