mirror of https://github.com/odrling/Aegisub
Make AssAttachment::GetEntryData const so that it's actually called
Originally committed to SVN as r4805.
This commit is contained in:
parent
a41aeb8421
commit
aee6b0a540
|
@ -122,7 +122,7 @@ void AssAttachment::Finish() {
|
|||
/// @brief Get encoded data to write on file
|
||||
/// @return
|
||||
///
|
||||
const wxString AssAttachment::GetEntryData() {
|
||||
const wxString AssAttachment::GetEntryData() const {
|
||||
// Get data
|
||||
const DataVec &dat = data->GetData();
|
||||
int pos = 0;
|
||||
|
|
|
@ -91,7 +91,7 @@ public:
|
|||
void Import(wxString filename);
|
||||
wxString GetFileName(bool raw=false);
|
||||
|
||||
const wxString GetEntryData();
|
||||
const wxString GetEntryData() const;
|
||||
|
||||
/// @brief DOCME
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue