Add various bugfixes from upstream 2.0 branch (forwarded request 145797 from sumski) OBS-URL: https://build.opensuse.org/request/show/145798 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/k3b?expand=0&rev=48
21 lines
718 B
Diff
21 lines
718 B
Diff
From: Michal Malek <michalm@jabster.pl>
|
|
Date: Sun, 01 May 2011 10:27:12 +0000
|
|
Subject: Set error status when CDDB query fails. Without it the error is buing not reported and as a result all entries in audio project are cleared up.
|
|
X-Git-Url: http://quickgit.kde.org/?p=k3b.git&a=commitdiff&h=fb10bb8fc296335488472468be107b8c4cdb9251
|
|
---
|
|
Set error status when CDDB query fails. Without it the error is buing not reported and as a result all entries in audio project are cleared up.
|
|
---
|
|
|
|
|
|
--- a/libk3b/tools/k3bcddb.cpp
|
|
+++ b/libk3b/tools/k3bcddb.cpp
|
|
@@ -116,6 +116,7 @@
|
|
}
|
|
}
|
|
else {
|
|
+ q->setError( KJob::UserDefinedError );
|
|
q->setErrorText( KCDDB::resultToString( result ) );
|
|
}
|
|
|
|
|