From 4ad4a754a33ccf115932ddad0978ede91b052c8e Mon Sep 17 00:00:00 2001
From: Thomas Goyne <plorkyeran@aegisub.org>
Date: Sun, 23 Jun 2013 12:38:02 -0700
Subject: [PATCH] Fix compilation on Linux

---
 aegisub/src/subtitle_format_txt.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/aegisub/src/subtitle_format_txt.cpp b/aegisub/src/subtitle_format_txt.cpp
index b1783fb96..9c52ab685 100644
--- a/aegisub/src/subtitle_format_txt.cpp
+++ b/aegisub/src/subtitle_format_txt.cpp
@@ -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;
-- 
GitLab