Hello community,

here is the log from the commit of package kconfigwidgets for openSUSE:Factory 
checked in at 2018-12-19 13:39:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kconfigwidgets (Old)
 and      /work/SRC/openSUSE:Factory/.kconfigwidgets.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kconfigwidgets"

Wed Dec 19 13:39:36 2018 rev:61 rq:658549 version:5.53.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kconfigwidgets/kconfigwidgets.changes    
2018-11-14 14:32:25.679382403 +0100
+++ /work/SRC/openSUSE:Factory/.kconfigwidgets.new.28833/kconfigwidgets.changes 
2018-12-19 13:40:08.780064303 +0100
@@ -1,0 +2,14 @@
+Sun Dec 09 19:43:43 UTC 2018 - [email protected]
+
+- Update to 5.53.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.53.0.php
+- Changes since 5.52.0:
+  * Use isEmpty()
+  * Use new syntax
+  * Mark private member pointer to pimpl interface instance const
+  * Use normalized slot signature
+  * Use member-function-pointer-based signal/slot connections
+
+-------------------------------------------------------------------

Old:
----
  kconfigwidgets-5.52.0.tar.xz

New:
----
  kconfigwidgets-5.53.0.tar.xz

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

Other differences:
------------------
++++++ kconfigwidgets.spec ++++++
--- /var/tmp/diff_new_pack.0KNFc7/_old  2018-12-19 13:40:09.296063573 +0100
+++ /var/tmp/diff_new_pack.0KNFc7/_new  2018-12-19 13:40:09.296063573 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5ConfigWidgets5
-%define _tar_path 5.52
+%define _tar_path 5.53
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:           kconfigwidgets
-Version:        5.52.0
+Version:        5.53.0
 Release:        0
 Summary:        Widgets for configuration dialogs
 License:        LGPL-2.1-or-later

++++++ kconfigwidgets-5.52.0.tar.xz -> kconfigwidgets-5.53.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/CMakeLists.txt 
new/kconfigwidgets-5.53.0/CMakeLists.txt
--- old/kconfigwidgets-5.52.0/CMakeLists.txt    2018-11-03 18:59:01.000000000 
+0100
+++ new/kconfigwidgets-5.53.0/CMakeLists.txt    2018-12-01 15:53:25.000000000 
+0100
@@ -1,17 +1,17 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.52.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.52.0") # handled by release scripts
+set(KF5_VERSION "5.53.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.53.0") # handled by release scripts
 project(KConfigWidgets VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.52.0  NO_MODULE)
+find_package(ECM 5.53.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)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
-set(REQUIRED_QT_VERSION 5.8.0)
+set(REQUIRED_QT_VERSION 5.9.0)
 find_package(Qt5 "${REQUIRED_QT_VERSION}" CONFIG REQUIRED Widgets DBus)
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kconfigwidgets-5.52.0/autotests/kstandardactiontest.cpp 
new/kconfigwidgets-5.53.0/autotests/kstandardactiontest.cpp
--- old/kconfigwidgets-5.52.0/autotests/kstandardactiontest.cpp 2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/autotests/kstandardactiontest.cpp 2018-12-01 
15:53:25.000000000 +0100
@@ -129,7 +129,7 @@
 
 
     QUrl expectedUrl = QUrl(QStringLiteral("file:///foo/bar"));
-    KRecentFilesAction *recent = KStandardAction::openRecent(&receiver, 
SLOT(onUrlSelected(const QUrl &)), &receiver);
+    KRecentFilesAction *recent = KStandardAction::openRecent(&receiver, 
SLOT(onUrlSelected(QUrl)), &receiver);
     QCOMPARE(receiver.lastUrl, QUrl());
     recent->urlSelected(expectedUrl);
     QCOMPARE(receiver.lastUrl, expectedUrl);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/kconfigwidgets.categories 
new/kconfigwidgets-5.53.0/kconfigwidgets.categories
--- old/kconfigwidgets-5.52.0/kconfigwidgets.categories 2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/kconfigwidgets.categories 2018-12-01 
15:53:25.000000000 +0100
@@ -1 +1 @@
-kf5.kconfigwidgets KConfigWidgets
+kf5.kconfigwidgets KConfigWidgets IDENTIFIER [KCONFIG_WIDGETS_LOG]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/po/id/kconfigwidgets5.po 
new/kconfigwidgets-5.53.0/po/id/kconfigwidgets5.po
--- old/kconfigwidgets-5.52.0/po/id/kconfigwidgets5.po  2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/po/id/kconfigwidgets5.po  2018-12-01 
15:53:25.000000000 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-08-16 09:05+0200\n"
-"PO-Revision-Date: 2018-10-28 21:37+0700\n"
+"PO-Revision-Date: 2018-11-18 17:12+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -210,12 +210,12 @@
 #: kstandardaction_p.h:51
 #, kde-format
 msgid "&Quit"
-msgstr "&Keluar"
+msgstr "&Berhenti"
 
 #: kstandardaction_p.h:51
 #, kde-format
 msgid "Quit application"
-msgstr "Keluar aplikasi"
+msgstr "Berhenti aplikasi"
 
 #: kstandardaction_p.h:53
 #, kde-format
@@ -315,52 +315,52 @@
 #: kstandardaction_p.h:68
 #, kde-format
 msgid "&Fit to Page"
-msgstr "&Pas ke Halaman"
+msgstr "&Paskan ke Halaman"
 
 #: kstandardaction_p.h:68
 #, kde-format
 msgid "Zoom to fit page in window"
-msgstr "Perbesar agar halaman pas di jendela"
+msgstr "Zum ke pas halaman di dalam jendela"
 
 #: kstandardaction_p.h:69
 #, kde-format
 msgid "Fit to Page &Width"
-msgstr "Pas ke Lebar Halaman"
+msgstr "Paskan ke Lebar Halaman"
 
 #: kstandardaction_p.h:69
 #, kde-format
 msgid "Zoom to fit page width in window"
-msgstr "Perbesar agar lebar halaman pas di jendela"
+msgstr "Zum ke pas lebar halaman di dalam jendela"
 
 #: kstandardaction_p.h:70
 #, kde-format
 msgid "Fit to Page &Height"
-msgstr "Pas ke &Tinggi Halaman"
+msgstr "Paskan ke &Tinggi Halaman"
 
 #: kstandardaction_p.h:70
 #, kde-format
 msgid "Zoom to fit page height in window"
-msgstr "Perbesar agar tinggi halaman pas di jendela"
+msgstr "Zum ke pas tinggi halaman di dalam jendela"
 
 #: kstandardaction_p.h:71
 #, kde-format
 msgid "Zoom &In"
-msgstr "Perbesar&"
+msgstr "Zum Per&besar"
 
 #: kstandardaction_p.h:72
 #, kde-format
 msgid "Zoom &Out"
-msgstr "Perkecil&"
+msgstr "Zum Perke&cil"
 
 #: kstandardaction_p.h:73
 #, kde-format
 msgid "&Zoom..."
-msgstr "&Perbesar..."
+msgstr "&Zum..."
 
 #: kstandardaction_p.h:73
 #, kde-format
 msgid "Select zoom level"
-msgstr "Pilih level perbesaran"
+msgstr "Pilih level zum"
 
 #: kstandardaction_p.h:74
 #, kde-format
@@ -380,7 +380,7 @@
 #: kstandardaction_p.h:76
 #, kde-format
 msgid "Go up"
-msgstr "Ke atas"
+msgstr "Menuju atas"
 
 #: kstandardaction_p.h:81
 #, kde-format
@@ -390,7 +390,7 @@
 #: kstandardaction_p.h:81
 #, kde-format
 msgid "Go to previous page"
-msgstr "Ke halaman sebelumnya"
+msgstr "Menuju ke halaman sebelumnya"
 
 #: kstandardaction_p.h:82
 #, kde-format
@@ -400,22 +400,22 @@
 #: kstandardaction_p.h:82
 #, kde-format
 msgid "Go to next page"
-msgstr "Ke halaman berikutnya"
+msgstr "Menuju ke halaman berikutnya"
 
 #: kstandardaction_p.h:83
 #, kde-format
 msgid "&Go To..."
-msgstr "Per&gi Ke..."
+msgstr "Menu&ju Ke..."
 
 #: kstandardaction_p.h:84
 #, kde-format
 msgid "&Go to Page..."
-msgstr "&Ke Halaman..."
+msgstr "Menu&ju ke Halaman..."
 
 #: kstandardaction_p.h:85
 #, kde-format
 msgid "&Go to Line..."
-msgstr "K&e Baris..."
+msgstr "Menu&ju ke Baris..."
 
 #: kstandardaction_p.h:86
 #, kde-format
@@ -425,7 +425,7 @@
 #: kstandardaction_p.h:86
 #, kde-format
 msgid "Go to first page"
-msgstr "Ke halaman pertama"
+msgstr "Menuju ke halaman pertama"
 
 #: kstandardaction_p.h:87
 #, kde-format
@@ -435,7 +435,7 @@
 #: kstandardaction_p.h:87
 #, kde-format
 msgid "Go to last page"
-msgstr "Ke Halaman terakhir"
+msgstr "Menuju ke halaman terakhir"
 
 #: kstandardaction_p.h:88
 #, kde-format
@@ -445,7 +445,7 @@
 #: kstandardaction_p.h:88
 #, kde-format
 msgid "Go back in document"
-msgstr "Kembali di Dokumen"
+msgstr "Menuju mundur di dokumen"
 
 #: kstandardaction_p.h:89
 #, kde-format
@@ -455,7 +455,7 @@
 #: kstandardaction_p.h:89
 #, kde-format
 msgid "Go forward in document"
-msgstr "Maju di dokumen"
+msgstr "Menuju maju di dokumen"
 
 #: kstandardaction_p.h:91
 #, kde-format
@@ -608,7 +608,7 @@
 #, kde-format
 msgctxt "@option:check"
 msgid "&Show tips on startup"
-msgstr "&Tampilkan tip saat permulaian"
+msgstr "&Tampilkan tip saat startup"
 
 #: ktipdialog.cpp:311
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/po/zh_CN/kconfigwidgets5.po 
new/kconfigwidgets-5.53.0/po/zh_CN/kconfigwidgets5.po
--- old/kconfigwidgets-5.52.0/po/zh_CN/kconfigwidgets5.po       2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/po/zh_CN/kconfigwidgets5.po       2018-12-01 
15:53:25.000000000 +0100
@@ -16,7 +16,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-08-16 09:05+0200\n"
-"PO-Revision-Date: 2018-10-09 18:38\n"
+"PO-Revision-Date: 2018-11-12 09:13\n"
 "Last-Translator: guoyunhe <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/src/kcodecaction.cpp 
new/kconfigwidgets-5.53.0/src/kcodecaction.cpp
--- old/kconfigwidgets-5.52.0/src/kcodecaction.cpp      2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/src/kcodecaction.cpp      2018-12-01 
15:53:25.000000000 +0100
@@ -54,7 +54,7 @@
 
     void _k_subActionTriggered(QAction *);
 
-    KCodecAction *q;
+    KCodecAction * const q;
     QAction *defaultAction;
     QAction *currentSubAction;
 };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/src/kconfigdialog.cpp 
new/kconfigwidgets-5.53.0/src/kconfigdialog.cpp
--- old/kconfigwidgets-5.52.0/src/kconfigdialog.cpp     2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/src/kconfigdialog.cpp     2018-12-01 
15:53:25.000000000 +0100
@@ -71,7 +71,8 @@
         connect(buttonBox->button(QDialogButtonBox::RestoreDefaults), 
&QAbstractButton::clicked, q, [this]() { _k_updateButtons(); });
         connect(buttonBox->button(QDialogButtonBox::Help), 
&QAbstractButton::clicked, q, &KConfigDialog::showHelp);
 
-        connect(q, SIGNAL(pageRemoved(KPageWidgetItem*)), q, 
SLOT(onPageRemoved(KPageWidgetItem*)));
+        connect(q, &KPageDialog::pageRemoved,
+                q, &KConfigDialog::onPageRemoved);
 
         manager = new KConfigDialogManager(q, config);
         setupManagerConnections(manager);
@@ -89,7 +90,7 @@
     void _k_updateButtons();
     void _k_settingsChangedSlot();
 
-    KConfigDialog *q;
+    KConfigDialog * const q;
     QString mAnchor;
     QString mHelpApp;
     bool shown;
@@ -205,10 +206,14 @@
     q->connect(manager, SIGNAL(widgetModified()), q, SLOT(_k_updateButtons()));
 
     QDialogButtonBox *buttonBox = q->buttonBox();
-    q->connect(buttonBox->button(QDialogButtonBox::Ok), SIGNAL(clicked()), 
manager, SLOT(updateSettings()));
-    q->connect(buttonBox->button(QDialogButtonBox::Apply), SIGNAL(clicked()), 
manager, SLOT(updateSettings()));
-    q->connect(buttonBox->button(QDialogButtonBox::Cancel), SIGNAL(clicked()), 
manager, SLOT(updateWidgets()));
-    q->connect(buttonBox->button(QDialogButtonBox::RestoreDefaults), 
SIGNAL(clicked()), manager, SLOT(updateWidgetsDefault()));
+    q->connect(buttonBox->button(QDialogButtonBox::Ok), 
&QAbstractButton::clicked,
+               manager, &KConfigDialogManager::updateSettings);
+    q->connect(buttonBox->button(QDialogButtonBox::Apply), 
&QAbstractButton::clicked,
+               manager, &KConfigDialogManager::updateSettings);
+    q->connect(buttonBox->button(QDialogButtonBox::Cancel), 
&QAbstractButton::clicked,
+               manager, &KConfigDialogManager::updateWidgets);
+    q->connect(buttonBox->button(QDialogButtonBox::RestoreDefaults), 
&QAbstractButton::clicked,
+               manager, &KConfigDialogManager::updateWidgetsDefault);
 }
 
 void KConfigDialog::KConfigDialogPrivate::setApplyButtonEnabled(bool enabled)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/src/kconfigdialogmanager.cpp 
new/kconfigwidgets-5.53.0/src/kconfigdialogmanager.cpp
--- old/kconfigwidgets-5.52.0/src/kconfigdialogmanager.cpp      2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/src/kconfigdialogmanager.cpp      2018-12-01 
15:53:25.000000000 +0100
@@ -46,7 +46,7 @@
     KConfigDialogManagerPrivate(KConfigDialogManager *q) : q(q), 
insideGroupBox(false) { }
 
 public:
-    KConfigDialogManager *q;
+    KConfigDialogManager * const q;
 
     /**
     * KConfigSkeleton object used to store settings
@@ -263,7 +263,8 @@
                     if (d->allExclusiveGroupBoxes.contains(childWidget)) {
                         const QList<QAbstractButton *> buttons = 
childWidget->findChildren<QAbstractButton *>();
                         foreach(QAbstractButton *button, buttons) {
-                            connect(button, SIGNAL(toggled(bool)), this, 
SIGNAL(widgetModified()));
+                            connect(button, &QAbstractButton::toggled,
+                                    this, 
&KConfigDialogManager::widgetModified);
                         }
                     }
 
@@ -301,8 +302,8 @@
                     if (changeSignalFound) {
                         QComboBox *cb = qobject_cast<QComboBox *>(childWidget);
                         if (cb && cb->isEditable())
-                            connect(cb, SIGNAL(editTextChanged(QString)),
-                                    this, SIGNAL(widgetModified()));
+                            connect(cb, &QComboBox::editTextChanged,
+                                    this, 
&KConfigDialogManager::widgetModified);
                     }
                 }
                 QGroupBox *gb = qobject_cast<QGroupBox *>(childWidget);
@@ -384,7 +385,7 @@
     blockSignals(bSignalsBlocked);
 
     if (changed) {
-        QTimer::singleShot(0, this, SIGNAL(widgetModified()));
+        QTimer::singleShot(0, this, &KConfigDialogManager::widgetModified);
     }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/src/klanguagebutton.cpp 
new/kconfigwidgets-5.53.0/src/klanguagebutton.cpp
--- old/kconfigwidgets-5.52.0/src/klanguagebutton.cpp   2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/src/klanguagebutton.cpp   2018-12-01 
15:53:25.000000000 +0100
@@ -108,8 +108,8 @@
 
     button->setMenu(popup);
 
-    QObject::connect(popup, SIGNAL(triggered(QAction*)), parent, 
SLOT(slotTriggered(QAction*)));
-    QObject::connect(popup, SIGNAL(hovered(QAction*)), parent, 
SLOT(slotHovered(QAction*)));
+    QObject::connect(popup, &QMenu::triggered, parent, 
&KLanguageButton::slotTriggered);
+    QObject::connect(popup, &QMenu::hovered, parent, 
&KLanguageButton::slotHovered);
 }
 
 KLanguageButton::~KLanguageButton()
@@ -275,7 +275,7 @@
 
 void KLanguageButton::setCurrentItem(const QString &languageCode)
 {
-    if (!d->ids.count()) {
+    if (d->ids.isEmpty()) {
         return;
     }
     QAction *a;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/src/klanguagebutton.h 
new/kconfigwidgets-5.53.0/src/klanguagebutton.h
--- old/kconfigwidgets-5.52.0/src/klanguagebutton.h     2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/src/klanguagebutton.h     2018-12-01 
15:53:25.000000000 +0100
@@ -171,6 +171,7 @@
     void slotHovered(QAction *);
 
 private:
+    friend class KLanguageButtonPrivate;
     KLanguageButtonPrivate *const d;
 };
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/src/kpastetextaction.cpp 
new/kconfigwidgets-5.53.0/src/kpastetextaction.cpp
--- old/kconfigwidgets-5.52.0/src/kpastetextaction.cpp  2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/src/kpastetextaction.cpp  2018-12-01 
15:53:25.000000000 +0100
@@ -53,7 +53,7 @@
 
     void init();
 
-    KPasteTextAction *q;
+    KPasteTextAction * const q;
     QMenu *m_popup = nullptr;
     bool m_mixedMode;
 };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/src/krecentfilesaction.cpp 
new/kconfigwidgets-5.53.0/src/krecentfilesaction.cpp
--- old/kconfigwidgets-5.52.0/src/krecentfilesaction.cpp        2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/src/krecentfilesaction.cpp        2018-12-01 
15:53:25.000000000 +0100
@@ -81,7 +81,7 @@
     clearSeparator = q->menu()->addSeparator();
     clearSeparator->setVisible(false);
     clearSeparator->setObjectName(QStringLiteral("separator"));
-    clearAction = q->menu()->addAction(i18n("Clear List"), q, SLOT(clear()));
+    clearAction = q->menu()->addAction(i18n("Clear List"), q, 
&KRecentFilesAction::clear);
     clearAction->setObjectName(QStringLiteral("clear_action"));
     clearAction->setVisible(false);
     q->setEnabled(false);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.52.0/src/krecentfilesaction_p.h 
new/kconfigwidgets-5.53.0/src/krecentfilesaction_p.h
--- old/kconfigwidgets-5.52.0/src/krecentfilesaction_p.h        2018-11-03 
18:59:01.000000000 +0100
+++ new/kconfigwidgets-5.53.0/src/krecentfilesaction_p.h        2018-12-01 
15:53:25.000000000 +0100
@@ -59,7 +59,7 @@
     QAction *clearSeparator;
     QAction *clearAction;
 
-    KRecentFilesAction *q_ptr;
+    KRecentFilesAction * const q_ptr;
 };
 
 #endif // KRECENTFILESACTION_P_H


Reply via email to