freebsd-ports/sysutils/k3b-kde4/files/patch-src-rip-k3baudioripthread.cpp
Markus Brueffer 3177982cc5 Update to version 0.12.2:
All original patches were applied upstream. The new patches handle 2 small
gcc 2.95 related issues, a post 0.12.2 detected crash [1] and a CAM related
problem.

PR:		ports/83126
Submitted by:	Heiner Eichmann <h.eichmann@gmx.de> (maintainer)
		lofi [1]
2005-07-20 09:22:25 +00:00

11 lines
523 B
C++

--- src/rip/k3baudioripthread.cpp.orig Sun Jul 10 00:14:21 2005
+++ src/rip/k3baudioripthread.cpp Sun Jul 10 00:15:00 2005
@@ -536,7 +536,7 @@
// we always use a relative filename here
QString imageFile = m_tracks[0].second.section( '/', -1 );
- cueWriter.setImage( imageFile, ( d->fileType.isEmpty() ? "WAVE" : d->fileType ) );
+ cueWriter.setImage( imageFile, ( d->fileType.isEmpty() ? QString("WAVE") : d->fileType ) );
// use the same base name as the image file
QString cueFile = m_tracks[0].second;