1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-05 08:33:53 +01:00

Add some const qualifiers to BlockFile methods

This commit is contained in:
Paul Licameli
2016-04-10 19:49:28 -04:00
parent 7a1b4eb149
commit f94b3b3afa
23 changed files with 112 additions and 110 deletions

View File

@@ -142,7 +142,7 @@ class AudacityApp final : public wxApp {
* ShouldShowMissingAliasedFileWarning can be called to determine
* if the user should be notified
*/
void MarkAliasedFilesMissingWarning(BlockFile *b);
void MarkAliasedFilesMissingWarning(const BlockFile *b);
/** \brief Changes the behavior of missing aliased blockfiles warnings
*/
@@ -209,7 +209,7 @@ class AudacityApp final : public wxApp {
wxTimer mTimer;
bool m_aliasMissingWarningShouldShow;
BlockFile *m_LastMissingBlockFile;
const BlockFile *m_LastMissingBlockFile;
ODLock m_LastMissingBlockFileLock;