mirror of
https://github.com/odrling/Aegisub
synced 2025-04-11 22:56:02 +02:00
Make lines_to_delete a vector
This commit is contained in:
parent
2d259bb27e
commit
3d22784998
@ -37,6 +37,7 @@
|
||||
#include "command/command.h"
|
||||
|
||||
#include <deque>
|
||||
#include <vector>
|
||||
|
||||
#include <wx/event.h>
|
||||
#include <wx/thread.h>
|
||||
@ -83,7 +84,7 @@ namespace Automation4 {
|
||||
/// Commits to apply once processing completes successfully
|
||||
std::deque<PendingCommit> pending_commits;
|
||||
/// Lines to delete once processing complete successfully
|
||||
std::deque<std::unique_ptr<AssEntry>> lines_to_delete;
|
||||
std::vector<std::unique_ptr<AssEntry>> lines_to_delete;
|
||||
|
||||
int ObjectIndexRead(lua_State *L);
|
||||
void ObjectIndexWrite(lua_State *L);
|
||||
|
Loading…
x
Reference in New Issue
Block a user