mirror of https://github.com/odrling/Aegisub
Fix AssAttachment::Clone() not being const causing it to not override AssEntry::Clone(), and make sure the group field is also copied during cloning. Updates #1216.
Originally committed to SVN as r4589.
This commit is contained in:
parent
8e912e3ff6
commit
7521d2d29d
|
@ -79,12 +79,13 @@ AssAttachment::~AssAttachment() {
|
||||||
/// @brief Clone
|
/// @brief Clone
|
||||||
/// @return
|
/// @return
|
||||||
///
|
///
|
||||||
AssEntry *AssAttachment::Clone() {
|
AssEntry *AssAttachment::Clone() const {
|
||||||
// New object
|
// New object
|
||||||
AssAttachment *clone = new AssAttachment(filename);
|
AssAttachment *clone = new AssAttachment(filename);
|
||||||
|
|
||||||
// Copy fields
|
// Copy fields
|
||||||
clone->data = data;
|
clone->data = data;
|
||||||
|
clone->group = group;
|
||||||
|
|
||||||
// Return
|
// Return
|
||||||
return clone;
|
return clone;
|
||||||
|
|
|
@ -96,7 +96,7 @@ public:
|
||||||
/// @brief DOCME
|
/// @brief DOCME
|
||||||
///
|
///
|
||||||
ASS_EntryType GetType() { return ENTRY_ATTACHMENT; }
|
ASS_EntryType GetType() { return ENTRY_ATTACHMENT; }
|
||||||
AssEntry *Clone();
|
AssEntry *Clone() const;
|
||||||
|
|
||||||
AssAttachment(wxString name);
|
AssAttachment(wxString name);
|
||||||
~AssAttachment();
|
~AssAttachment();
|
||||||
|
|
Loading…
Reference in New Issue