diff options
author | Ted Gould <ted@canonical.com> | 2009-09-22 20:05:05 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-09-22 20:05:05 -0500 |
commit | 598d58724403eed938863e802583f7e12df4f17d (patch) | |
tree | e7371e2ef2ae9c4887d356be3f70e42481c35cb9 /src/status-service.c | |
parent | 382806bf28f847d73ce20e152f65f8e4a7c2bf0d (diff) | |
parent | 62fbd1f460c253a9a9770ec37a916dd2f55335dd (diff) | |
download | ayatana-indicator-session-598d58724403eed938863e802583f7e12df4f17d.tar.gz ayatana-indicator-session-598d58724403eed938863e802583f7e12df4f17d.tar.bz2 ayatana-indicator-session-598d58724403eed938863e802583f7e12df4f17d.zip |
Merging in the MC5 branch
Diffstat (limited to 'src/status-service.c')
-rw-r--r-- | src/status-service.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/status-service.c b/src/status-service.c index 0cb9185..d8b3631 100644 --- a/src/status-service.c +++ b/src/status-service.c @@ -40,12 +40,14 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include "status-service-dbus.h" #include "status-provider.h" +#include "status-provider-mc5.h" #include "status-provider-pidgin.h" #include "status-provider-telepathy.h" typedef StatusProvider * (*newfunc) (void); -#define STATUS_PROVIDER_CNT 2 +#define STATUS_PROVIDER_CNT 3 static newfunc status_provider_newfuncs[STATUS_PROVIDER_CNT] = { + status_provider_mc5_new, status_provider_pidgin_new, status_provider_telepathy_new }; |