Make AssAttachment::GetEntryData const so that it's actually called

Originally committed to SVN as r4805.
This commit is contained in:
Thomas Goyne 2010-10-11 20:06:26 +00:00
parent a41aeb8421
commit aee6b0a540
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -91,7 +91,7 @@ public:
void Import(wxString filename);
wxString GetFileName(bool raw=false);
const wxString GetEntryData();
const wxString GetEntryData() const;
/// @brief DOCME
///