Fix compilation on Linux

This commit is contained in:
Thomas Goyne 2013-06-23 12:38:02 -07:00
parent 1f93280376
commit 4ad4a754a3
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ void TXTSubtitleFormat::ReadFile(AssFile *target, wxString const& filename, wxSt
// Sets line up
AssDialogue *line = new AssDialogue;
line->Actor = isComment ? wxEmptyString : actor;
line->Actor = isComment ? wxString() : actor;
line->Comment = isComment;
line->Text = value;
line->End = 0;