aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-09-16 17:09:30 -0500
committerTed Gould <ted@canonical.com>2009-09-16 17:09:30 -0500
commitd099f107194dd103d79a73cdbe5660bf7e8d1d3b (patch)
tree9c8d846c40a6a35ebdf4bb17faeed05881706b58
parent8a1dae9a1e1ce8cb59bca4196f1cfc41ea4338df (diff)
downloadayatana-indicator-session-d099f107194dd103d79a73cdbe5660bf7e8d1d3b.tar.gz
ayatana-indicator-session-d099f107194dd103d79a73cdbe5660bf7e8d1d3b.tar.bz2
ayatana-indicator-session-d099f107194dd103d79a73cdbe5660bf7e8d1d3b.zip
Linking in the MC5 provider
-rw-r--r--src/status-service.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/status-service.c b/src/status-service.c
index fe02dd0..37ae7c4 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
};