dbus_service: Remove unused function

This commit is contained in:
Dorota Czaplejewicz
2020-01-09 15:53:49 +00:00
parent 9f59279307
commit 033a1cf200
2 changed files with 1 additions and 6 deletions

View File

@ -175,6 +175,7 @@ static void on_visible(EekboardService *service,
GParamSpec *pspec,
ServerContextService *context)
{
(void)pspec;
gboolean visible;
EekboardServicePrivate *priv;
@ -216,8 +217,6 @@ eekboard_service_class_init (EekboardServiceClass *klass)
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
GParamSpec *pspec;
klass->create_context = NULL;
gobject_class->constructed = eekboard_service_constructed;
gobject_class->set_property = eekboard_service_set_property;
gobject_class->get_property = eekboard_service_get_property;

View File

@ -37,10 +37,6 @@ G_DECLARE_DERIVABLE_TYPE (EekboardService, eekboard_service, EEKBOARD, SERVICE,
struct _EekboardServiceClass {
/*< private >*/
GObjectClass parent_class;
/*< public >*/
EekboardContextService *(*create_context) (EekboardService *self);
/*< private >*/
/* padding */
gpointer pdummy[24];