aboutsummaryrefslogtreecommitdiff
path: root/src/status-provider-telepathy.h
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2010-01-08 13:13:28 -0500
committerKen VanDine <ken.vandine@canonical.com>2010-01-08 13:13:28 -0500
commit1e460db90b903c62e8e9c31047e2c675ad432d55 (patch)
treebdf19812540ce5cbe54ddc44ae2a2786c1efa966 /src/status-provider-telepathy.h
parentd96e16ad7ffdea4807f942ac4b452a6dc607a1fa (diff)
parente012a31aa9a8420873a4b36ba64afeed6202e18f (diff)
downloadayatana-indicator-session-1e460db90b903c62e8e9c31047e2c675ad432d55.tar.gz
ayatana-indicator-session-1e460db90b903c62e8e9c31047e2c675ad432d55.tar.bz2
ayatana-indicator-session-1e460db90b903c62e8e9c31047e2c675ad432d55.zip
* Upstream release 0.2.0
* Removing status support * Merging the users service and the session service * debian/control: Updating to depend on dbusmenu 0.2.0 or higher. * debian/control: Dropping build depends for libtelepathy-glib-dev
Diffstat (limited to 'src/status-provider-telepathy.h')
-rw-r--r--src/status-provider-telepathy.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/status-provider-telepathy.h b/src/status-provider-telepathy.h
deleted file mode 100644
index a67ee40..0000000
--- a/src/status-provider-telepathy.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
-A small wrapper utility to load indicators and put them as menu items
-into the gnome-panel using it's applet interface.
-
-Copyright 2009 Canonical Ltd.
-
-Authors:
- Ted Gould <ted@canonical.com>
-
-This program is free software: you can redistribute it and/or modify it
-under the terms of the GNU General Public License version 3, as published
-by the Free Software Foundation.
-
-This program is distributed in the hope that it will be useful, but
-WITHOUT ANY WARRANTY; without even the implied warranties of
-MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
-PURPOSE. See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License along
-with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef __STATUS_PROVIDER_TELEPATHY_H__
-#define __STATUS_PROVIDER_TELEPATHY_H__
-
-#include <glib.h>
-#include <glib-object.h>
-
-#include "status-provider.h"
-
-G_BEGIN_DECLS
-
-#define STATUS_PROVIDER_TELEPATHY_TYPE (status_provider_telepathy_get_type ())
-#define STATUS_PROVIDER_TELEPATHY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), STATUS_PROVIDER_TELEPATHY_TYPE, StatusProviderTelepathy))
-#define STATUS_PROVIDER_TELEPATHY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), STATUS_PROVIDER_TELEPATHY_TYPE, StatusProviderTelepathyClass))
-#define IS_STATUS_PROVIDER_TELEPATHY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), STATUS_PROVIDER_TELEPATHY_TYPE))
-#define IS_STATUS_PROVIDER_TELEPATHY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), STATUS_PROVIDER_TELEPATHY_TYPE))
-#define STATUS_PROVIDER_TELEPATHY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), STATUS_PROVIDER_TELEPATHY_TYPE, StatusProviderTelepathyClass))
-
-
-typedef struct _StatusProviderTelepathyClass StatusProviderTelepathyClass;
-struct _StatusProviderTelepathyClass {
- StatusProviderClass parent_class;
-};
-
-typedef struct _StatusProviderTelepathy StatusProviderTelepathy;
-struct _StatusProviderTelepathy {
- StatusProvider parent;
-};
-
-GType status_provider_telepathy_get_type (void);
-StatusProvider * status_provider_telepathy_new (void);
-
-G_END_DECLS
-
-#endif