diff options
author | Ted Gould <ted@canonical.com> | 2009-08-24 23:39:11 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-08-24 23:39:11 -0500 |
commit | eeb9d116964338ab393e3b8a323adcd73822a702 (patch) | |
tree | 2f287cf69bf3f238e2e5de6070cb660ac8ac4268 /src/status-service.c | |
parent | 7a02e6dc576e0a3989c17a7f9fd56a1b5440e2e9 (diff) | |
parent | 51a1209a398df17727d6bb79bad11480af173970 (diff) | |
download | ayatana-indicator-session-eeb9d116964338ab393e3b8a323adcd73822a702.tar.gz ayatana-indicator-session-eeb9d116964338ab393e3b8a323adcd73822a702.tar.bz2 ayatana-indicator-session-eeb9d116964338ab393e3b8a323adcd73822a702.zip |
More status...
Diffstat (limited to 'src/status-service.c')
-rw-r--r-- | src/status-service.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/status-service.c b/src/status-service.c index 5a9d9b5..5a60fa6 100644 --- a/src/status-service.c +++ b/src/status-service.c @@ -39,11 +39,13 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include "status-provider.h" #include "status-provider-pidgin.h" +#include "status-provider-telepathy.h" typedef StatusProvider * (*newfunc) (void); -#define STATUS_PROVIDER_CNT 1 +#define STATUS_PROVIDER_CNT 2 static newfunc status_provider_newfuncs[STATUS_PROVIDER_CNT] = { - status_provider_pidgin_new + status_provider_pidgin_new, + status_provider_telepathy_new }; static StatusProvider * status_providers[STATUS_PROVIDER_CNT] = { 0 }; |