From 4b301ff893da66cb0a8f5e4c541efa7e70ee67a3 Mon Sep 17 00:00:00 2001 From: Lars Uebernickel Date: Mon, 21 Jan 2013 17:04:02 +0100 Subject: indicator-ng: add indicator_ng_new_for_profile --- libindicator/indicator-ng.c | 11 +++++++++++ libindicator/indicator-ng.h | 10 +++++++--- 2 files changed, 18 insertions(+), 3 deletions(-) (limited to 'libindicator') diff --git a/libindicator/indicator-ng.c b/libindicator/indicator-ng.c index 10c362c..32a9e0c 100644 --- a/libindicator/indicator-ng.c +++ b/libindicator/indicator-ng.c @@ -447,3 +447,14 @@ indicator_ng_new (const gchar *service_file, "service-file", service_file, NULL); } + +IndicatorNg * +indicator_ng_new_for_profile (const gchar *service_file, + const gchar *profile, + GError **error) +{ + return g_initable_new (INDICATOR_TYPE_NG, NULL, error, + "service-file", service_file, + "profile", profile, + NULL); +} diff --git a/libindicator/indicator-ng.h b/libindicator/indicator-ng.h index 4dd333e..fb4553f 100644 --- a/libindicator/indicator-ng.h +++ b/libindicator/indicator-ng.h @@ -13,9 +13,13 @@ typedef struct _IndicatorNg IndicatorNg; typedef IndicatorObjectClass IndicatorNgClass; -GType indicator_ng_get_type (void); +GType indicator_ng_get_type (void); -IndicatorNg * indicator_ng_new (const gchar *service_file, - GError **error); +IndicatorNg * indicator_ng_new (const gchar *service_file, + GError **error); + +IndicatorNg * indicator_ng_new_for_profile (const gchar *service_file, + const gchar *profile, + GError **error); #endif -- cgit v1.2.3