tags 777929 + patch
thanks

Here's a fix for the GCC 5 build issue.  I changed the initialization of
a boolean variable from nullptr to false to fix the compile error. The
package builds and links with GCC5 with this change.

--
Betty Dall
Linux for HP Helion, Hewlett-Packard
Description: Initialize bool with false instead of nullptr
GCC-5 compiler is giving an error for the initialziation of the variable
m_pendiingRequest because nullptr is not a bool. Changing to false.
 kphotoalbum (4.5-1.1) UNRELEASED; urgency=serious
   * Non-maintainer upload.
   * Fixing gcc-5 compile failure
Author: Betty Dall <ejd...@m300-c8n1.hlinux.usa.hp.com>

---

--- kphotoalbum-4.5.orig/ImageManager/VideoThumbnails.cpp
+++ kphotoalbum-4.5/ImageManager/VideoThumbnails.cpp
@@ -44,7 +44,7 @@ void ImageManager::VideoThumbnails::setV
         return;
 
     cancelPreviousJobs();
-    m_pendingRequest = nullptr;
+    m_pendingRequest = false;
     for ( int i= 0; i < 10; ++i )
         m_cache[i] = QImage();
 

Reply via email to