-rw-r--r-- | core/applets/vmemo/vmemo.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index 4c07b3a..226f058 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp @@ -309,9 +309,6 @@ bool VMemo::startRecording() { if (openDSP() == -1) { recording = FALSE; - msgLabel=0; - delete msgLabel; - return FALSE; } @@ -427,6 +424,10 @@ int VMemo::openDSP() { } if(dsp == -1) { + msgLabel->close(); + msgLabel=0; + delete msgLabel; + perror("open(\"/dev/dsp\")"); errorMsg="open(\"/dev/dsp\")\n "+(QString)strerror(errno); QMessageBox::critical(0, "vmemo", errorMsg, "Abort"); |