mirror of https://github.com/odrling/Aegisub
Add group as an optional parameter to AssEntry's contructor
Originally committed to SVN as r6161.
This commit is contained in:
parent
a189bac35e
commit
bddd4fc714
|
@ -82,7 +82,7 @@ public:
|
|||
/// Group it belongs to, e.g. "[Events]"
|
||||
wxString group;
|
||||
|
||||
AssEntry(wxString const& data = "") : data(data) { }
|
||||
AssEntry(wxString const& data = "", wxString const& group = "") : data(data), group(group) { }
|
||||
virtual ~AssEntry() { }
|
||||
|
||||
/// Create a copy of this entry
|
||||
|
|
Loading…
Reference in New Issue