Skip to content

Commit

Permalink
Merge remote-tracking branch 'nemo/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
special committed Jul 30, 2013
2 parents 326a22a + 2a84da0 commit c6c1532
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions mcp-account-manager-uoa/mcp-account-manager-uoa.c
Expand Up @@ -741,6 +741,27 @@ account_manager_uoa_set (const McpAccountStorage *storage,
return TRUE;
}

static gchar *
account_manager_uoa_create (const McpAccountStorage *storage,
const McpAccountManager *am,
const gchar *cm_name,
const gchar *protocol_name,
GHashTable *params,
GError **error)
{
/* We don't want account creation for this plugin. */
return NULL;
}

static gboolean
account_manager_uoa_delete (const McpAccountStorage *storage,
const McpAccountManager *am,
const gchar *account_name,
const gchar *key)
{
return FALSE;
}

static gboolean
account_manager_uoa_commit (const McpAccountStorage *storage,
const McpAccountManager *am)
Expand Down Expand Up @@ -899,6 +920,8 @@ account_storage_iface_init (McpAccountStorageIface *iface)
IMPLEMENT (get);
IMPLEMENT (list);
IMPLEMENT (set);
IMPLEMENT (create);
IMPLEMENT (delete);
IMPLEMENT (commit);
IMPLEMENT (ready);
IMPLEMENT (get_identifier);
Expand Down

0 comments on commit c6c1532

Please sign in to comment.