Hello community,

here is the log from the commit of package kguiaddons for openSUSE:Factory 
checked in at 2015-09-24 07:11:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kguiaddons (Old)
 and      /work/SRC/openSUSE:Factory/.kguiaddons.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kguiaddons"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kguiaddons/kguiaddons.changes    2015-09-02 
07:45:54.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kguiaddons.new/kguiaddons.changes       
2015-09-24 07:11:43.000000000 +0200
@@ -1,0 +2,7 @@
+Tue Sep  8 17:13:08 UTC 2015 - [email protected]
+
+- Update to 5.14.0
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.14.0.php
+
+-------------------------------------------------------------------

Old:
----
  kguiaddons-5.13.0.tar.xz

New:
----
  kguiaddons-5.14.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kguiaddons.spec ++++++
--- /var/tmp/diff_new_pack.sRBCOL/_old  2015-09-24 07:11:44.000000000 +0200
+++ /var/tmp/diff_new_pack.sRBCOL/_new  2015-09-24 07:11:44.000000000 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5GuiAddons5
-%define _tar_path 5.13
+%define _tar_path 5.14
 Name:           kguiaddons
-Version:        5.13.0
+Version:        5.14.0
 Release:        0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++++++ kguiaddons-5.13.0.tar.xz -> kguiaddons-5.14.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kguiaddons-5.13.0/CMakeLists.txt 
new/kguiaddons-5.14.0/CMakeLists.txt
--- old/kguiaddons-5.13.0/CMakeLists.txt        2015-08-01 14:41:18.000000000 
+0200
+++ new/kguiaddons-5.14.0/CMakeLists.txt        2015-09-04 22:12:18.000000000 
+0200
@@ -3,7 +3,7 @@
 project(KGuiAddons)
 
 include(FeatureSummary)
-find_package(ECM 5.13.0  NO_MODULE)
+find_package(ECM 5.14.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -25,7 +25,7 @@
 include(GenerateExportHeader)
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
-set(KF5_VERSION "5.13.0") # handled by release scripts
+set(KF5_VERSION "5.14.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KGUIADDONS
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kguiaddons_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kguiaddons-5.13.0/src/util/klocalimagecacheimpl.cpp 
new/kguiaddons-5.14.0/src/util/klocalimagecacheimpl.cpp
--- old/kguiaddons-5.13.0/src/util/klocalimagecacheimpl.cpp     2015-08-01 
14:41:18.000000000 +0200
+++ new/kguiaddons-5.14.0/src/util/klocalimagecacheimpl.cpp     2015-09-04 
22:12:18.000000000 +0200
@@ -31,12 +31,12 @@
  * This is a QObject subclass so we can catch the signal that the application 
is about
  * to close and properly release any QPixmaps we have cached.
  */
-class KLocalImageCacheImplementation::Private : public QObject
+class KLocalImageCacheImplementationPrivate : public QObject
 {
     Q_OBJECT
 
 public:
-    Private(QObject *parent = 0)
+    KLocalImageCacheImplementationPrivate(QObject *parent = 0)
         : QObject(parent)
         , timestamp(QDateTime::currentDateTime())
         , enablePixmapCaching(true)
@@ -80,7 +80,7 @@
 };
 
 KLocalImageCacheImplementation::KLocalImageCacheImplementation(unsigned 
defaultCacheSize)
-    : d(new Private)
+    : d(new KLocalImageCacheImplementationPrivate)
 {
     // Use at least 16 KiB for the pixmap cache
     d->pixmapCache.setMaxCost(qMax(defaultCacheSize / 8, (unsigned int) 
16384));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kguiaddons-5.13.0/src/util/klocalimagecacheimpl.h 
new/kguiaddons-5.14.0/src/util/klocalimagecacheimpl.h
--- old/kguiaddons-5.13.0/src/util/klocalimagecacheimpl.h       2015-08-01 
14:41:18.000000000 +0200
+++ new/kguiaddons-5.14.0/src/util/klocalimagecacheimpl.h       2015-09-04 
22:12:18.000000000 +0200
@@ -21,6 +21,7 @@
 #define KLOCALIMAGECACHEIMPL_H
 
 #include <kguiaddons_export.h>
+class KLocalImageCacheImplementationPrivate;
 
 class QImage;
 class QPixmap;
@@ -58,8 +59,7 @@
     void clearLocalCache();
 
 private:
-    class Private;
-    Private *const d; ///< @internal
+    KLocalImageCacheImplementationPrivate *const d; ///< @internal
 
     template<class T> friend class KSharedPixmapCacheMixin;
 };


Reply via email to