diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-07-12 07:42:07 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2013-07-12 07:42:07 -0500 |
commit | a19955f3f81b1a5eb8fc928bc5dcf8a24bb6833f (patch) | |
tree | 54b1593439a2ef0e69d30a3b8cb891d865db9d31 /src/actions.c | |
parent | c9352cd0a8363e4508d19e66ccf373b2abb2b7d3 (diff) | |
download | ayatana-indicator-session-a19955f3f81b1a5eb8fc928bc5dcf8a24bb6833f.tar.gz ayatana-indicator-session-a19955f3f81b1a5eb8fc928bc5dcf8a24bb6833f.tar.bz2 ayatana-indicator-session-a19955f3f81b1a5eb8fc928bc5dcf8a24bb6833f.zip |
add the online-accounts action and unit tests for it
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/actions.c b/src/actions.c index ca086b7..563f626 100644 --- a/src/actions.c +++ b/src/actions.c @@ -250,6 +250,14 @@ indicator_session_actions_has_online_account_error (IndicatorSessionActions * se ***/ void +indicator_session_actions_online_accounts (IndicatorSessionActions * self) +{ + g_return_if_fail (INDICATOR_IS_SESSION_ACTIONS (self)); + + INDICATOR_SESSION_ACTIONS_GET_CLASS (self)->online_accounts (self); +} + +void indicator_session_actions_settings (IndicatorSessionActions * self) { g_return_if_fail (INDICATOR_IS_SESSION_ACTIONS (self)); |