Fix another memory leak by returning the error messages on the stack

Change Song::errorSummary() to return the string with the error messages
on the stack to remove another memory leak.
This commit is contained in:
Michael Gregorius
2017-07-27 19:16:05 +02:00
parent 017fb4b089
commit 1f257f8125
2 changed files with 8 additions and 8 deletions

View File

@@ -67,7 +67,7 @@ public:
void clearErrors();
void collectError( const QString error );
bool hasErrors();
QString* errorSummary();
QString errorSummary();
class PlayPos : public MidiTime
{