Remove some pointless initializers in AssDialogue's constructor

This commit is contained in:
Thomas Goyne 2013-01-17 14:03:48 -08:00
parent c08a9d4d7d
commit cbbcc35e4f
1 changed files with 0 additions and 5 deletions

View File

@ -82,11 +82,6 @@ AssDialogue::AssDialogue(AssDialogue const& that)
AssDialogue::AssDialogue(wxString const& data)
: Id(++next_id)
, Comment(false)
, Layer(0)
, Start(0)
, End(5000)
, Style("Default")
{
if (!Parse(data))
throw SubtitleFormatParseError(from_wx("Failed parsing line: " + data), 0);