pidgin/pidgin

Remove now-unused PurpleXferUiOps.destroy.

2019-12-22, Elliott Sales de Andrade
d26ef8ea193f
Remove now-unused PurpleXferUiOps.destroy.

UI data is stored on GObjects and automatically destroyed, so this isn't
really needed as a UI op for *our* UIs. There will be a replacement soon
if needed by other UIs.
{
/* Just an empty string round-trip. */
.name = "empty",
.html = "",
.mime =
"Content-Type: multipart/related; boundary=related_MWc7f_0aac\r\n"
"Mime-Version: 1.0\r\n"
"Content-Disposition: inline\r\n"
"\r\n"
"--related_MWc7f_0aac\r\n"
"Content-Type: text/html; charset=us-ascii\r\n"
"Content-Disposition: inline\r\n"
"Content-Transfer-Encoding: 7bit\r\n"
"\r\n"
"\r\n"
"--related_MWc7f_0aac--\r\n"
},
{
/* A simple string. */
.name = "simple",
.html = "This is a test of the MIME encoding using a short message.",
.mime =
"Content-Type: multipart/related; boundary=related_MWc7f_0aac\r\n"
"Mime-Version: 1.0\r\n"
"Content-Disposition: inline\r\n"
"\r\n"
"--related_MWc7f_0aac\r\n"
"Content-Type: text/html; charset=us-ascii\r\n"
"Content-Disposition: inline\r\n"
"Content-Transfer-Encoding: 7bit\r\n"
"\r\n"
"This is a test of the MIME encoding using a short message.\r\n"
"--related_MWc7f_0aac--\r\n"
},