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]"
|
/// Group it belongs to, e.g. "[Events]"
|
||||||
wxString group;
|
wxString group;
|
||||||
|
|
||||||
AssEntry(wxString const& data = "") : data(data) { }
|
AssEntry(wxString const& data = "", wxString const& group = "") : data(data), group(group) { }
|
||||||
virtual ~AssEntry() { }
|
virtual ~AssEntry() { }
|
||||||
|
|
||||||
/// Create a copy of this entry
|
/// Create a copy of this entry
|
||||||
|
|
Loading…
Reference in New Issue