replace wireless connection error #warning with notification

this needs a more robust infrastructure than I'm prepared to write at
the moment, but errors do need to be seen
This commit is contained in:
Mike Blumenkrantz 2016-06-20 12:36:35 -04:00
parent aa1768a9d9
commit a93aadfe01
1 changed files with 16 additions and 1 deletions

View File

@ -990,7 +990,22 @@ _connman_agent_release(const Eldbus_Service_Interface *iface EINA_UNUSED, const
static Eldbus_Message *
_connman_agent_report_error(const Eldbus_Service_Interface *iface EINA_UNUSED, const Eldbus_Message *msg EINA_UNUSED)
{
#warning FIXME
const char *path, *err;
E_Notification_Notify n;
if (!eldbus_message_arguments_get(msg, "ss", &path, &err))
{
ERR("Could not parse message %p", msg);
return NULL;
}
/* TODO: need a generic "sticky" gadget popup */
memset(&n, 0, sizeof(E_Notification_Notify));
n.timeout = 3000;
n.summary = _("Connection Error");
n.body = err;
n.urgency = E_NOTIFICATION_NOTIFY_URGENCY_NORMAL;
e_notification_client_send(&n, NULL, NULL);
return NULL;
}