diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-01-21 17:04:02 +0100 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-01-21 17:04:02 +0100 |
commit | 4b301ff893da66cb0a8f5e4c541efa7e70ee67a3 (patch) | |
tree | 5a828e0b4c0c3c86ccd06a1f1c091240adbf8b26 /libindicator/indicator-ng.c | |
parent | 869d977e5add09a08ec6e1fcf1d77f8286adca53 (diff) | |
download | libayatana-indicator-4b301ff893da66cb0a8f5e4c541efa7e70ee67a3.tar.gz libayatana-indicator-4b301ff893da66cb0a8f5e4c541efa7e70ee67a3.tar.bz2 libayatana-indicator-4b301ff893da66cb0a8f5e4c541efa7e70ee67a3.zip |
indicator-ng: add indicator_ng_new_for_profile
Diffstat (limited to 'libindicator/indicator-ng.c')
-rw-r--r-- | libindicator/indicator-ng.c | 11 |
1 files changed, 11 insertions, 0 deletions
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); +} |