rev 3969 - in kde-extras/libkexif/trunk/debian: . patches

Tom Albers tomalbers-guest at costa.debian.org
Sun Jun 18 15:46:27 UTC 2006


Author: tomalbers-guest
Date: 2006-06-18 15:46:27 +0000 (Sun, 18 Jun 2006)
New Revision: 3969

Added:
   kde-extras/libkexif/trunk/debian/patches/12_showExifValues.diff
Modified:
   kde-extras/libkexif/trunk/debian/changelog
Log:
Fixes grave bug where no exif data is shown in digiKam.


Modified: kde-extras/libkexif/trunk/debian/changelog
===================================================================
--- kde-extras/libkexif/trunk/debian/changelog	2006-06-18 00:23:26 UTC (rev 3968)
+++ kde-extras/libkexif/trunk/debian/changelog	2006-06-18 15:46:27 UTC (rev 3969)
@@ -2,8 +2,12 @@
 
   * NOT RELEASED YET
 
- -- Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>  Wed, 17 May 2006 08:26:51 +0100
+  [ Tom Albers ]
+  * Added patches/12_showExifValues.diff, which fixes grave bug 372716:
+    "digikam doesn't show exif info".
 
+ -- Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>  Sun, 18 Jun 2006 17:45:51 +0100
+
 libkexif (0.2.3-1) unstable; urgency=low
 
   [ Mark Purcell ]

Added: kde-extras/libkexif/trunk/debian/patches/12_showExifValues.diff
===================================================================
--- kde-extras/libkexif/trunk/debian/patches/12_showExifValues.diff	2006-06-18 00:23:26 UTC (rev 3968)
+++ kde-extras/libkexif/trunk/debian/patches/12_showExifValues.diff	2006-06-18 15:46:27 UTC (rev 3969)
@@ -0,0 +1,12 @@
+diff -Nur libkexif-0.2.3/libkexif/kexifentry.cpp libkexif-0.2.3.new/libkexif/kexifentry.cpp
+--- libkexif-0.2.3/libkexif/kexifentry.cpp	2006-05-07 00:22:21.000000000 +0200
++++ libkexif-0.2.3.new/libkexif/kexifentry.cpp	2006-06-18 17:37:13.000000000 +0200
+@@ -104,7 +104,7 @@
+     exif_entry_get_value(mExifEntry, cstr.data(), cstr.size()-1);
+     // just in case we don't get a null-terminated string
+     cstr[cstr.size()-1] = '\0';
+-    QString str = QString::fromLatin1(cstr.data());
++    mValue = QString::fromLatin1(cstr.data());
+ #else
+     mValue = QString::fromUtf8(exif_entry_get_value(mExifEntry));
+ #endif




More information about the pkg-kde-commits mailing list