mirror of
https://github.com/odrling/Aegisub
synced 2025-04-11 22:56:02 +02:00
Fix windows compilation with c++17
This commit is contained in:
parent
3dd4e637f6
commit
0c53a99b71
@ -389,11 +389,11 @@ void SubsController::Redo() {
|
||||
}
|
||||
|
||||
wxString SubsController::GetUndoDescription() const {
|
||||
return IsUndoStackEmpty() ? "" : undo_stack.back().undo_description;
|
||||
return IsUndoStackEmpty() ? wxString() : undo_stack.back().undo_description;
|
||||
}
|
||||
|
||||
wxString SubsController::GetRedoDescription() const {
|
||||
return IsRedoStackEmpty() ? "" : redo_stack.back().undo_description;
|
||||
return IsRedoStackEmpty() ? wxString() : redo_stack.back().undo_description;
|
||||
}
|
||||
|
||||
agi::fs::path SubsController::Filename() const {
|
||||
|
Loading…
x
Reference in New Issue
Block a user