summaryrefslogtreecommitdiff
path: root/libpurple/xfer.h
diff options
context:
space:
mode:
authorElliott Sales de Andrade <qulogic@pidgin.im>2019-12-22 21:00:23 -0500
committerElliott Sales de Andrade <qulogic@pidgin.im>2019-12-22 21:00:23 -0500
commit1e44bfa70b9ab73fd3720b93a1ad953970d182c4 (patch)
tree2adfd956f00b99bc10db81383b67812d9568f484 /libpurple/xfer.h
parent1099b09afe5a67740e5b311ae6d0a84e62daf913 (diff)
downloadpidgin-1e44bfa70b9ab73fd3720b93a1ad953970d182c4.tar.gz
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.
Diffstat (limited to 'libpurple/xfer.h')
-rw-r--r--libpurple/xfer.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/libpurple/xfer.h b/libpurple/xfer.h
index 92d627adc1..858b3ca05e 100644
--- a/libpurple/xfer.h
+++ b/libpurple/xfer.h
@@ -91,7 +91,6 @@ G_DECLARE_DERIVABLE_TYPE(PurpleXfer, purple_xfer, PURPLE, XFER, GObject)
/**
* PurpleXferUiOps:
* @new_xfer: UI op that's called after a new transfer is created.
- * @destroy: UI op that's called when a transfer is being destroyed.
*
* File transfer UI operations.
*
@@ -101,7 +100,6 @@ G_DECLARE_DERIVABLE_TYPE(PurpleXfer, purple_xfer, PURPLE, XFER, GObject)
struct _PurpleXferUiOps
{
void (*new_xfer)(PurpleXfer *xfer);
- void (*destroy)(PurpleXfer *xfer);
};
/**