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 /// @brief Get encoded data to write on file
/// @return /// @return
/// ///
const wxString AssAttachment::GetEntryData() { const wxString AssAttachment::GetEntryData() const {
// Get data // Get data
const DataVec &dat = data->GetData(); const DataVec &dat = data->GetData();
int pos = 0; int pos = 0;

View file

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