aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-08-24 20:48:41 -0500
committerTed Gould <ted@canonical.com>2009-08-24 20:48:41 -0500
commit95190bc550383beb535ce52d66d3d0d7f46c0021 (patch)
tree2d4e5d5aeb068fdfc5f52b5974f37aed9c1cd616
parentfd8f49b1170f7e17aa050ad620296bb5315a8146 (diff)
downloadayatana-indicator-session-95190bc550383beb535ce52d66d3d0d7f46c0021.tar.gz
ayatana-indicator-session-95190bc550383beb535ce52d66d3d0d7f46c0021.tar.bz2
ayatana-indicator-session-95190bc550383beb535ce52d66d3d0d7f46c0021.zip
Connecting the telepathy stuff into the overall status service
-rw-r--r--src/status-service.c6
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 };