# HG changeset patch # User Chris Cannam # Date 1578497650 0 # Node ID 1e2e03197b8cc95c678990ce4a0143f0d48fee6f # Parent 16f6737fa5573faca3219a3f7519b540f4726dee Remove m_abandoning: set m_documentModified to false instead (the purpose of it is just to avoid asking user to save) diff -r 16f6737fa557 -r 1e2e03197b8c framework/MainWindowBase.cpp --- a/framework/MainWindowBase.cpp Wed Jan 08 15:33:17 2020 +0000 +++ b/framework/MainWindowBase.cpp Wed Jan 08 15:34:10 2020 +0000 @@ -162,7 +162,6 @@ m_recentTransforms("RecentTransforms", 20), m_documentModified(false), m_openingAudioFile(false), - m_abandoning(false), m_labeller(nullptr), m_lastPlayStatusSec(0), m_initialDarkBackground(false), diff -r 16f6737fa557 -r 1e2e03197b8c framework/MainWindowBase.h --- a/framework/MainWindowBase.h Wed Jan 08 15:33:17 2020 +0000 +++ b/framework/MainWindowBase.h Wed Jan 08 15:34:10 2020 +0000 @@ -430,7 +430,6 @@ bool m_documentModified; bool m_openingAudioFile; - bool m_abandoning; Labeller *m_labeller;