From cb2c5ed6e7e5a1e90de5232398432939da328a0e Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Mon, 13 Mar 2006 22:12:23 +0000 Subject: [PATCH] Fixed extra comments being added on export/undo (might have broken other stuff) Originally committed to SVN as r220. --- core/ass_file.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/ass_file.cpp b/core/ass_file.cpp index 5fd230ac8..29df47bd8 100644 --- a/core/ass_file.cpp +++ b/core/ass_file.cpp @@ -320,10 +320,6 @@ AssFile::AssFile (AssFile &from) { for (list::iterator cur=from.Line.begin();cur!=from.Line.end();cur++) { Line.push_back((*cur)->Clone()); } - - // Add comments - AddComment(_T("Script generated by Aegisub")); - AddComment(_T("http://www.aegisub.net")); }