trim whitespace from windows error messages

the messages contain a trailing CRLF, which is not helpful.

Change-Id: I4a27115a191dc416a62e28a41f2a9c5893bdc64b
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
This commit is contained in:
Oswald Buddenhagen 2015-05-13 20:53:49 +02:00
parent 4334ddc76b
commit fe9baf7e5b

View File

@ -214,7 +214,7 @@ static QString windowsErrorCode()
NULL); NULL);
QString ret = QString::fromWCharArray(string); QString ret = QString::fromWCharArray(string);
LocalFree((HLOCAL)string); LocalFree((HLOCAL)string);
return ret; return ret.trimmed();
} }
#endif #endif