1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-25 02:09:48 +01:00

qt5: no implicit QString from QUuid

This commit is contained in:
Dominik Schmidt 2013-01-05 21:58:22 +01:00
parent 82753732b9
commit 6a7baca8aa

View File

@ -217,7 +217,7 @@ typedef QList< QPair< QString, QString > > PairList;
inline static QString uuid()
{
// kinda lame, but
QString q = QUuid::createUuid();
QString q = QUuid::createUuid().toString();
q.remove( 0, 1 );
q.chop( 1 );
return q;