Mercurial > hg > sonic-visualiser
changeset 2027:c669b40a8d56
Minor debug output change
author | Chris Cannam |
---|---|
date | Tue, 02 Oct 2018 16:41:23 +0100 |
parents | d3729faca2ca |
children | 52849104e8bf |
files | main/MainWindow.cpp |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/main/MainWindow.cpp Tue Oct 02 11:58:27 2018 +0100 +++ b/main/MainWindow.cpp Tue Oct 02 16:41:23 2018 +0100 @@ -3580,16 +3580,16 @@ void MainWindow::closeEvent(QCloseEvent *e) { -// cerr << "MainWindow::closeEvent" << endl; + SVDEBUG << "MainWindow::closeEvent" << endl; if (m_openingAudioFile) { -// cerr << "Busy - ignoring close event" << endl; + SVCERR << "Busy - ignoring close event" << endl; e->ignore(); return; } if (!m_abandoning && !checkSaveModified()) { -// cerr << "Close refused by user - ignoring close event" << endl; + SVCERR << "Close refused by user - ignoring close event" << endl; e->ignore(); return; }