diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-03-13 09:05:34 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-03-13 09:05:34 -0500 |
commit | 9936e22d5e70cd10988f328e8d86b1e5bc93ede9 (patch) | |
tree | 036da61a7b7bac5cda12954725b3a27b513c6025 /src/device.h | |
parent | 065169e1bb80fa1b7b0bcc1059c68d2ba934116b (diff) | |
download | ayatana-indicator-power-9936e22d5e70cd10988f328e8d86b1e5bc93ede9.tar.gz ayatana-indicator-power-9936e22d5e70cd10988f328e8d86b1e5bc93ede9.tar.bz2 ayatana-indicator-power-9936e22d5e70cd10988f328e8d86b1e5bc93ede9.zip |
in the new indicator_power_device_get_*() functions, use heap-allocated strings rather than relying on g_snprintf().
Diffstat (limited to 'src/device.h')
-rw-r--r-- | src/device.h | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/src/device.h b/src/device.h index 65c6767..3a10f89 100644 --- a/src/device.h +++ b/src/device.h @@ -126,23 +126,15 @@ GStrv indicator_power_device_get_icon_names (const IndicatorPower GIcon * indicator_power_device_get_gicon (const IndicatorPowerDevice * device); -void indicator_power_device_get_readable_text (const IndicatorPowerDevice * device, - gchar * str, - gulong size); +char * indicator_power_device_get_readable_text (const IndicatorPowerDevice * device); -void indicator_power_device_get_accessible_text (const IndicatorPowerDevice * device, - gchar * str, - gulong size); +char * indicator_power_device_get_accessible_text (const IndicatorPowerDevice * device); -void indicator_power_device_get_readable_title (const IndicatorPowerDevice * device, - gchar * str, - gulong size, +char * indicator_power_device_get_readable_title (const IndicatorPowerDevice * device, gboolean want_time, gboolean want_percent); -void indicator_power_device_get_accessible_title (const IndicatorPowerDevice * device, - gchar * str, - gulong size, +char * indicator_power_device_get_accessible_title (const IndicatorPowerDevice * device, gboolean want_time, gboolean want_percent); |