Hello community,

here is the log from the commit of package kparts for openSUSE:Factory checked 
in at 2020-08-12 12:24:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kparts (Old)
 and      /work/SRC/openSUSE:Factory/.kparts.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kparts"

Wed Aug 12 12:24:53 2020 rev:80 rq:825098 version:5.73.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kparts/kparts.changes    2020-07-14 
07:55:02.800965341 +0200
+++ /work/SRC/openSUSE:Factory/.kparts.new.3399/kparts.changes  2020-08-12 
12:29:06.600176548 +0200
@@ -1,0 +2,11 @@
+Sun Aug  2 07:13:40 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.73.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.73.0
+- Changes since 5.72.0:
+  * Fix compile without deprecated method (see kontactinterface)
+  * Use camelcase include. (scripted)
+
+-------------------------------------------------------------------

Old:
----
  kparts-5.72.0.tar.xz
  kparts-5.72.0.tar.xz.sig

New:
----
  kparts-5.73.0.tar.xz
  kparts-5.73.0.tar.xz.sig

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

Other differences:
------------------
++++++ kparts.spec ++++++
--- /var/tmp/diff_new_pack.hzsXlU/_old  2020-08-12 12:29:07.132176532 +0200
+++ /var/tmp/diff_new_pack.hzsXlU/_new  2020-08-12 12:29:07.136176532 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5Parts5
-%define _tar_path 5.72
+%define _tar_path 5.73
 # 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:           kparts
-Version:        5.72.0
+Version:        5.73.0
 Release:        0
 Summary:        Plugin framework for user interface components
 License:        LGPL-2.1-or-later


++++++ kparts-5.72.0.tar.xz -> kparts-5.73.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/CMakeLists.txt 
new/kparts-5.73.0/CMakeLists.txt
--- old/kparts-5.72.0/CMakeLists.txt    2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/CMakeLists.txt    2020-08-01 21:52:55.000000000 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.72.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.72.0") # handled by release scripts
+set(KF5_VERSION "5.73.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.73.0") # handled by release scripts
 project(KParts VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.72.0  NO_MODULE)
+find_package(ECM 5.73.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/autotests/notepad.cpp 
new/kparts-5.73.0/autotests/notepad.cpp
--- old/kparts-5.72.0/autotests/notepad.cpp     2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/autotests/notepad.cpp     2020-08-01 21:52:55.000000000 
+0200
@@ -28,11 +28,11 @@
 #include <QTextStream>
 #include <QTextEdit>
 
-#include <kaboutdata.h>
+#include <KAboutData>
 #include <QDebug>
-#include <kactioncollection.h>
-#include <klocalizedstring.h>
-#include <kpluginfactory.h>
+#include <KActionCollection>
+#include <KLocalizedString>
+#include <KPluginFactory>
 
 K_PLUGIN_FACTORY_WITH_JSON(NotepadFactory,
                  "notepad.json",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/autotests/notepad.h 
new/kparts-5.73.0/autotests/notepad.h
--- old/kparts-5.72.0/autotests/notepad.h       2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/autotests/notepad.h       2020-08-01 21:52:55.000000000 
+0200
@@ -23,7 +23,7 @@
 #define notepad_h
 
 #include <kparts/readwritepart.h>
-#include <kpluginfactory.h>
+#include <KPluginFactory>
 
 class KAboutData;
 class QTextEdit;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kparts-5.72.0/autotests/openorsavequestion_unittest.cpp 
new/kparts-5.73.0/autotests/openorsavequestion_unittest.cpp
--- old/kparts-5.72.0/autotests/openorsavequestion_unittest.cpp 2020-07-08 
10:50:14.000000000 +0200
+++ new/kparts-5.73.0/autotests/openorsavequestion_unittest.cpp 2020-08-01 
21:52:55.000000000 +0200
@@ -18,12 +18,12 @@
     Boston, MA 02110-1301, USA.
 */
 
-#include <kmimetypetrader.h>
+#include <KMimeTypeTrader>
 #include <kparts/browseropenorsavequestion.h>
 #include <qtest_widgets.h>
 
-#include <kconfiggroup.h>
-#include <ksharedconfig.h>
+#include <KConfigGroup>
+#include <KSharedConfig>
 #include <QDebug>
 
 #include <QDialog>
@@ -39,8 +39,6 @@
 static const QString OpenWith = QStringLiteral("openWithButton");
 static const QString Cancel = QStringLiteral("cancelButton");
 
-Q_DECLARE_METATYPE(QDialog *)
-
 class OpenOrSaveTest : public QObject
 {
     Q_OBJECT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/autotests/parttest.cpp 
new/kparts-5.73.0/autotests/parttest.cpp
--- old/kparts-5.72.0/autotests/parttest.cpp    2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/autotests/parttest.cpp    2020-08-01 21:52:55.000000000 
+0200
@@ -19,7 +19,7 @@
 #include "parttest.h"
 #include <qtest_widgets.h>
 
-#include <ksharedconfig.h>
+#include <KSharedConfig>
 #include <kparts/readonlypart.h>
 #include <kparts/openurlarguments.h>
 #include <QSignalSpy>
@@ -189,9 +189,9 @@
 }
 
 #include <kparts/mainwindow.h>
-#include <ktoolbar.h>
-#include <kconfiggroup.h>
-#include <ktoggletoolbaraction.h>
+#include <KToolBar>
+#include <KConfigGroup>
+#include <KToggleToolBarAction>
 class MyMainWindow : public KParts::MainWindow
 {
 public:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/po/ca/kparts5.po 
new/kparts-5.73.0/po/ca/kparts5.po
--- old/kparts-5.72.0/po/ca/kparts5.po  2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/po/ca/kparts5.po  2020-08-01 21:52:55.000000000 +0200
@@ -4,7 +4,7 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Sebastià Pla i Sanz <[email protected]>, 1998, 1999, 2000, 2001, 2002, 2003, 
2004, 2005, 2006, 2007.
-# Antoni Bella Pérez <[email protected]>, 2003, 2006, 2011, 2012, 2013, 
2014.
+# Antoni Bella Pérez <[email protected]>, 2003, 2006, 2011, 2012, 2013, 
2014, 2020.
 # Albert Astals Cid <[email protected]>, 2004, 2005, 2007.
 # Josep Ma. Ferrer <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012, 
2013, 2014, 2016, 2017, 2020.
 # Robert Millan <[email protected]>, 2009.
@@ -14,14 +14,14 @@
 "Project-Id-Version: kparts5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-06-07 02:02+0200\n"
-"PO-Revision-Date: 2020-03-22 12:33+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"PO-Revision-Date: 2020-07-24 11:59+0200\n"
+"Last-Translator: Antoni Bella Pérez <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.04.3\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -60,7 +60,7 @@
 #, kde-format
 msgctxt "@label:checkbox"
 msgid "Remember action for files of this type"
-msgstr "Recorda l'acció per a fitxers d'aquest tipus"
+msgstr "Recorda l'acció per als fitxers d'aquest tipus"
 
 #: browseropenorsavequestion.cpp:162 browseropenorsavequestion.cpp:255
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/po/da/kparts5.po 
new/kparts-5.73.0/po/da/kparts5.po
--- old/kparts-5.72.0/po/da/kparts5.po  2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/po/da/kparts5.po  2020-08-01 21:52:55.000000000 +0200
@@ -2,14 +2,14 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Martin Schlander <[email protected]>, 2008, 2009, 2010, 2011, 2012, 
2013.
+# Martin Schlander <[email protected]>, 2008, 2009, 2010, 2011, 2012, 
2013, 2020.
 # Keld Simonsen <[email protected]>, 2010.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-06-07 02:02+0200\n"
-"PO-Revision-Date: 2013-11-06 19:33+0100\n"
+"PO-Revision-Date: 2020-07-27 18:18+0200\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
 "Language: da\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 20.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -151,18 +151,14 @@
 msgstr "Afslå"
 
 #: partloader.cpp:182
-#, fuzzy, kde-format
-#| msgid ""
-#| "The service '%1' does not provide an interface '%2' with keyword '%3'"
+#, kde-format
 msgid "The plugin '%1' does not provide an interface '%2' with keyword '%3'"
-msgstr ""
-"Tjenesten \"%1\" leverer ikke grænsefladen \"%2\" med nøgleordet \"%3\""
+msgstr "Pluginet \"%1\" leverer ikke grænsefladen \"%2\" med nøgleordet \"%3\""
 
 #: partloader.cpp:197
-#, fuzzy, kde-format
-#| msgid "No handler found for %1."
+#, kde-format
 msgid "No part was found for mimeType %1"
-msgstr "Ingen håndtering fundet for %1."
+msgstr "Der blev ikke fundet en part for MIME-typen %1"
 
 #: readwritepart.cpp:93
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/po/sl/kparts5.po 
new/kparts-5.73.0/po/sl/kparts5.po
--- old/kparts-5.72.0/po/sl/kparts5.po  2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/po/sl/kparts5.po  2020-08-01 21:52:55.000000000 +0200
@@ -18,7 +18,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-06-07 02:02+0200\n"
-"PO-Revision-Date: 2020-05-19 10:29+0200\n"
+"PO-Revision-Date: 2020-07-08 08:14+0200\n"
 "Last-Translator: Matjaž Jeran <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
 "Language: sl\n"
@@ -26,7 +26,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Translator: Andrej Mernik <[email protected]>\n"
-"X-Generator: Poedit 2.3\n"
+"X-Generator: Lokalize 19.12.2\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
 "%100==4 ? 3 : 0);\n"
 
@@ -171,7 +171,7 @@
 #: partloader.cpp:197
 #, kde-format
 msgid "No part was found for mimeType %1"
-msgstr ""
+msgstr "Za vrsto mime %1 ni bilo najdenega nobenega dela"
 
 #: readwritepart.cpp:93
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/po/zh_CN/kparts5.po 
new/kparts-5.73.0/po/zh_CN/kparts5.po
--- old/kparts-5.72.0/po/zh_CN/kparts5.po       2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/po/zh_CN/kparts5.po       2020-08-01 21:52:55.000000000 
+0200
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-06-07 02:02+0200\n"
-"PO-Revision-Date: 2020-06-24 08:00\n"
+"PO-Revision-Date: 2020-07-31 15:01\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/browserextension.cpp 
new/kparts-5.73.0/src/browserextension.cpp
--- old/kparts-5.72.0/src/browserextension.cpp  2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/src/browserextension.cpp  2020-08-01 21:52:55.000000000 
+0200
@@ -21,9 +21,9 @@
 
 #include "kparts_logging.h"
 
-#include <klocalizedstring.h>
-#include <kmessagebox.h>
-#include <kurifilter.h>
+#include <KLocalizedString>
+#include <KMessageBox>
+#include <KUriFilter>
 
 #include <QApplication>
 #include <QClipboard>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/browseropenorsavequestion.cpp 
new/kparts-5.73.0/src/browseropenorsavequestion.cpp
--- old/kparts-5.72.0/src/browseropenorsavequestion.cpp 2020-07-08 
10:50:14.000000000 +0200
+++ new/kparts-5.73.0/src/browseropenorsavequestion.cpp 2020-08-01 
21:52:55.000000000 +0200
@@ -20,15 +20,15 @@
 
 #include "browseropenorsavequestion.h"
 
-#include <kconfiggroup.h>
-#include <ksharedconfig.h>
-#include <klocalizedstring.h>
-#include <kfileitemactions.h>
-#include <ksqueezedtextlabel.h>
-#include <kmimetypetrader.h>
-#include <kstandardguiitem.h>
-#include <kguiitem.h>
-#include <kmessagebox.h>
+#include <KConfigGroup>
+#include <KSharedConfig>
+#include <KLocalizedString>
+#include <KFileItemActions>
+#include <KSqueezedTextLabel>
+#include <KMimeTypeTrader>
+#include <KStandardGuiItem>
+#include <KGuiItem>
+#include <KMessageBox>
 
 #include <QMimeDatabase>
 #include <QAction>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/browseropenorsavequestion.h 
new/kparts-5.73.0/src/browseropenorsavequestion.h
--- old/kparts-5.72.0/src/browseropenorsavequestion.h   2020-07-08 
10:50:14.000000000 +0200
+++ new/kparts-5.73.0/src/browseropenorsavequestion.h   2020-08-01 
21:52:55.000000000 +0200
@@ -24,7 +24,7 @@
 #include <kparts/kparts_export.h>
 #include <kparts/browserrun.h>
 
-#include <kservice.h>
+#include <KService>
 
 namespace KParts
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/browserrun.cpp 
new/kparts-5.73.0/src/browserrun.cpp
--- old/kparts-5.72.0/src/browserrun.cpp        2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/src/browserrun.cpp        2020-08-01 21:52:55.000000000 
+0200
@@ -22,20 +22,20 @@
 
 #include "kparts_logging.h"
 
-#include <kconfiggroup.h>
-#include <ksharedconfig.h>
-#include <kmessagebox.h>
+#include <KConfigGroup>
+#include <KSharedConfig>
+#include <KMessageBox>
 #include <KIO/CommandLauncherJob>
 #include <KIO/OpenUrlJob>
 #include <kio/job.h>
 #include <kio/jobuidelegate.h>
 #include <kio/scheduler.h>
 #include <kio/copyjob.h>
-#include <kjobwidgets.h>
-#include <klocalizedstring.h>
-#include <kshell.h>
-#include <kmimetypetrader.h>
-#include <kprotocolmanager.h>
+#include <KJobWidgets>
+#include <KLocalizedString>
+#include <KShell>
+#include <KMimeTypeTrader>
+#include <KProtocolManager>
 
 #include <QTemporaryFile>
 #include <QMimeDatabase>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/browserrun.h 
new/kparts-5.73.0/src/browserrun.h
--- old/kparts-5.72.0/src/browserrun.h  2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/src/browserrun.h  2020-08-01 21:52:55.000000000 +0200
@@ -21,8 +21,8 @@
 
 #include <kparts/browserextension.h>
 
-#include <krun.h>
-#include <kservice.h>
+#include <KRun>
+#include <KService>
 
 #if KIOWIDGETS_ENABLE_DEPRECATED_SINCE(5, 71)
 namespace KParts
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/fileinfoextension.h 
new/kparts-5.73.0/src/fileinfoextension.h
--- old/kparts-5.72.0/src/fileinfoextension.h   2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/src/fileinfoextension.h   2020-08-01 21:52:55.000000000 
+0200
@@ -22,7 +22,7 @@
 
 #include <kparts/kparts_export.h>
 
-#include <kfileitem.h>
+#include <KFileItem>
 #include <QObject>
 
 class KFileItemList;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/htmlsettingsinterface.cpp 
new/kparts-5.73.0/src/htmlsettingsinterface.cpp
--- old/kparts-5.72.0/src/htmlsettingsinterface.cpp     2020-07-08 
10:50:14.000000000 +0200
+++ new/kparts-5.73.0/src/htmlsettingsinterface.cpp     2020-08-01 
21:52:55.000000000 +0200
@@ -19,7 +19,7 @@
 
 #include "htmlsettingsinterface.h"
 
-#include <klocalizedstring.h>
+#include <KLocalizedString>
 
 using namespace KParts;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/mainwindow.cpp 
new/kparts-5.73.0/src/mainwindow.cpp
--- old/kparts-5.72.0/src/mainwindow.cpp        2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/src/mainwindow.cpp        2020-08-01 21:52:55.000000000 
+0200
@@ -24,13 +24,13 @@
 #include "part.h"
 #include "plugin.h"
 
-#include <kactioncollection.h>
-#include <kedittoolbar.h>
-#include <khelpmenu.h>
-#include <kaboutdata.h>
-#include <kxmlguifactory.h>
-#include <kconfiggroup.h>
-#include <ksharedconfig.h>
+#include <KActionCollection>
+#include <KEditToolBar>
+#include <KHelpMenu>
+#include <KAboutData>
+#include <KXMLGUIFactory>
+#include <KConfigGroup>
+#include <KSharedConfig>
 
 #include <QAction>
 #include <QApplication>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/part.cpp 
new/kparts-5.73.0/src/part.cpp
--- old/kparts-5.72.0/src/part.cpp      2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/src/part.cpp      2020-08-01 21:52:55.000000000 +0200
@@ -31,8 +31,8 @@
 #include "guiactivateevent.h"
 #include "partmanager.h"
 
-#include <kxmlguifactory.h>
-#include <kiconloader.h>
+#include <KXMLGUIFactory>
+#include <KIconLoader>
 
 
 using namespace KParts;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/partbase.h 
new/kparts-5.73.0/src/partbase.h
--- old/kparts-5.72.0/src/partbase.h    2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/src/partbase.h    2020-08-01 21:52:55.000000000 +0200
@@ -25,7 +25,7 @@
 
 #include <QObject>
 
-#include <kxmlguiclient.h>
+#include <KXMLGUIClient>
 
 
 #define KPARTS_DECLARE_PRIVATE(Class) \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/partbase_p.h 
new/kparts-5.73.0/src/partbase_p.h
--- old/kparts-5.72.0/src/partbase_p.h  2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/src/partbase_p.h  2020-08-01 21:52:55.000000000 +0200
@@ -23,7 +23,7 @@
 
 #include "partbase.h"
 
-#include <kaboutdata.h>
+#include <KAboutData>
 
 namespace KParts
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/plugin.cpp 
new/kparts-5.73.0/src/plugin.cpp
--- old/kparts-5.72.0/src/plugin.cpp    2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/src/plugin.cpp    2020-08-01 21:52:55.000000000 +0200
@@ -22,14 +22,14 @@
 
 #include "part.h"
 
-#include <kpluginfactory.h>
-#include <kpluginloader.h>
-#include <kxmlguifactory.h>
-#include <klocalizedstring.h>
-#include <kdesktopfile.h>
-#include <ksharedconfig.h>
-#include <kconfiggroup.h>
-#include <kaboutdata.h>
+#include <KPluginFactory>
+#include <KPluginLoader>
+#include <KXMLGUIFactory>
+#include <KLocalizedString>
+#include <KDesktopFile>
+#include <KSharedConfig>
+#include <KConfigGroup>
+#include <KAboutData>
 
 #include <QFile>
 #include <QObject>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/plugin.h 
new/kparts-5.73.0/src/plugin.h
--- old/kparts-5.72.0/src/plugin.h      2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/src/plugin.h      2020-08-01 21:52:55.000000000 +0200
@@ -22,7 +22,7 @@
 
 #include <kparts/kparts_export.h>
 
-#include <kxmlguiclient.h>
+#include <KXMLGUIClient>
 #include <QDomElement>
 #include <QObject>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/readonlypart.cpp 
new/kparts-5.73.0/src/readonlypart.cpp
--- old/kparts-5.72.0/src/readonlypart.cpp      2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/src/readonlypart.cpp      2020-08-01 21:52:55.000000000 
+0200
@@ -27,8 +27,8 @@
 #include "guiactivateevent.h"
 
 #include <kio/job.h>
-#include <kjobwidgets.h>
-#include <kprotocolinfo.h>
+#include <KJobWidgets>
+#include <KProtocolInfo>
 
 #include <QMimeDatabase>
 #include <QFileInfo>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/readwritepart.cpp 
new/kparts-5.73.0/src/readwritepart.cpp
--- old/kparts-5.72.0/src/readwritepart.cpp     2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/src/readwritepart.cpp     2020-08-01 21:52:55.000000000 
+0200
@@ -24,10 +24,10 @@
 #include "kparts_logging.h"
 
 #include <kio/job.h>
-#include <kjobwidgets.h>
-#include <klocalizedstring.h>
-#include <kmessagebox.h>
-#include <kdirnotify.h>
+#include <KJobWidgets>
+#include <KLocalizedString>
+#include <KMessageBox>
+#include <KDirNotify>
 
 #include <QApplication>
 #include <QFileDialog>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/statusbarextension.cpp 
new/kparts-5.73.0/src/statusbarextension.cpp
--- old/kparts-5.72.0/src/statusbarextension.cpp        2020-07-08 
10:50:14.000000000 +0200
+++ new/kparts-5.73.0/src/statusbarextension.cpp        2020-08-01 
21:52:55.000000000 +0200
@@ -25,7 +25,7 @@
 #include "readonlypart.h"
 #include "guiactivateevent.h"
 
-#include <kmainwindow.h>
+#include <KMainWindow>
 
 #include <QPointer>
 #include <QObject>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/src/textextension.h 
new/kparts-5.73.0/src/textextension.h
--- old/kparts-5.72.0/src/textextension.h       2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/src/textextension.h       2020-08-01 21:52:55.000000000 
+0200
@@ -22,7 +22,7 @@
 
 #include <kparts/kparts_export.h>
 
-#include <kfind.h>
+#include <KFind>
 #include <QObject>
 
 namespace KParts
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kparts-5.72.0/templates/kpartsapp/kpartsapp.kdevtemplate 
new/kparts-5.73.0/templates/kpartsapp/kpartsapp.kdevtemplate
--- old/kparts-5.72.0/templates/kpartsapp/kpartsapp.kdevtemplate        
2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/templates/kpartsapp/kpartsapp.kdevtemplate        
2020-08-01 21:52:55.000000000 +0200
@@ -44,7 +44,7 @@
 Comment=Generate an application built on the KParts framework, using CMake.
 Comment[ar]=ولّد تطبيقًا يعتمد على إطار عمل «أجزاءك» باستخدام CMake.
 Comment[az]=CMake istifadə edərək, KParts çərçivəsində qurulmuş bir proqram 
yaradın.
-Comment[ca]=Genera una construcció d'aplicació en el Framework KParts, usant 
el CMake.
+Comment[ca]=Genera una construcció d'aplicació en el marc de treball KParts, 
usant el CMake.
 Comment[ca@valencia]=Genera una construcció d'aplicació en el Framework 
KParts, usant el CMake.
 Comment[cs]=Generovat aplikaci postavenou na frameworku KParts pomocí CMake.
 Comment[da]=Generer et program bygget på KParts-systemet med brug af CMake.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/tests/normalktm.cpp 
new/kparts-5.73.0/tests/normalktm.cpp
--- old/kparts-5.72.0/tests/normalktm.cpp       2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/tests/normalktm.cpp       2020-08-01 21:52:55.000000000 
+0200
@@ -34,10 +34,10 @@
 
 #include <QAction>
 #include <QApplication>
-#include <kmessagebox.h>
-#include <kactioncollection.h>
-#include <klocalizedstring.h>
-#include <qstandardpaths.h>
+#include <KMessageBox>
+#include <KActionCollection>
+#include <KLocalizedString>
+#include <QStandardPaths>
 
 TestMainWindow::TestMainWindow()
     : KXmlGuiWindow()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/tests/parts.cpp 
new/kparts-5.73.0/tests/parts.cpp
--- old/kparts-5.72.0/tests/parts.cpp   2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/tests/parts.cpp   2020-08-01 21:52:55.000000000 +0200
@@ -23,8 +23,8 @@
 
 #include "guiactivateevent.h"
 
-#include <kactionmenu.h>
-#include <kactioncollection.h>
+#include <KActionMenu>
+#include <KActionCollection>
 
 #include <QAction>
 #include <QCheckBox>
@@ -35,7 +35,7 @@
 #include <QTest>
 
 #include <QDebug>
-#include <klocalizedstring.h>
+#include <KLocalizedString>
 
 Part1::Part1(QObject *parent, QWidget *parentWidget)
     : KParts::ReadOnlyPart(parent),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/tests/parts.h 
new/kparts-5.73.0/tests/parts.h
--- old/kparts-5.72.0/tests/parts.h     2020-07-08 10:50:14.000000000 +0200
+++ new/kparts-5.73.0/tests/parts.h     2020-08-01 21:52:55.000000000 +0200
@@ -23,7 +23,7 @@
 #define __parts_h__
 
 #include <kparts/readonlypart.h>
-#include <kaboutdata.h>
+#include <KAboutData>
 
 class QTextEdit;
 namespace KParts
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/tests/partviewer.cpp 
new/kparts-5.73.0/tests/partviewer.cpp
--- old/kparts-5.72.0/tests/partviewer.cpp      2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/tests/partviewer.cpp      2020-08-01 21:52:55.000000000 
+0200
@@ -21,13 +21,13 @@
 
 #include "partviewer.h"
 
-#include <kactioncollection.h>
-#include <kactionmenu.h>
-#include <klocalizedstring.h>
-#include <kmimetypetrader.h>
+#include <KActionCollection>
+#include <KActionMenu>
+#include <KLocalizedString>
+#include <KMimeTypeTrader>
 #include <partloader.h>
 
-#include <qmimedatabase.h>
+#include <QMimeDatabase>
 #include <QAction>
 #include <QApplication>
 #include <QFileDialog>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/tests/plugin_spellcheck.cpp 
new/kparts-5.73.0/tests/plugin_spellcheck.cpp
--- old/kparts-5.72.0/tests/plugin_spellcheck.cpp       2020-07-08 
10:50:14.000000000 +0200
+++ new/kparts-5.73.0/tests/plugin_spellcheck.cpp       2020-08-01 
21:52:55.000000000 +0200
@@ -23,10 +23,10 @@
 #include <KParts/ReadOnlyPart>
 #include <QTextEdit>
 #include <QAction>
-#include <kactioncollection.h>
-#include <kmessagebox.h>
-#include <kpluginfactory.h>
-#include <klocalizedstring.h>
+#include <KActionCollection>
+#include <KMessageBox>
+#include <KPluginFactory>
+#include <KLocalizedString>
 #include <QDebug>
 
 PluginSpellCheck::PluginSpellCheck(QObject *parent,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/tests/terminal_test.cpp 
new/kparts-5.73.0/tests/terminal_test.cpp
--- old/kparts-5.72.0/tests/terminal_test.cpp   2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/tests/terminal_test.cpp   2020-08-01 21:52:55.000000000 
+0200
@@ -11,7 +11,7 @@
 
 #include <kde_terminal_interface.h>
 #include <kparts/readonlypart.h>
-#include <kservice.h>
+#include <KService>
 #include <QApplication>
 
 Window::Window()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.72.0/tests/testmainwindow.cpp 
new/kparts-5.73.0/tests/testmainwindow.cpp
--- old/kparts-5.72.0/tests/testmainwindow.cpp  2020-07-08 10:50:14.000000000 
+0200
+++ new/kparts-5.73.0/tests/testmainwindow.cpp  2020-08-01 21:52:55.000000000 
+0200
@@ -30,12 +30,12 @@
 #include <QDir>
 #include <QCoreApplication>
 #include <QApplication>
-#include <kxmlguifactory.h>
-#include <kmessagebox.h>
-#include <kactioncollection.h>
-#include <klocalizedstring.h>
+#include <KXMLGUIFactory>
+#include <KMessageBox>
+#include <KActionCollection>
+#include <KLocalizedString>
 #include <kparts/partmanager.h>
-#include <qstandardpaths.h>
+#include <QStandardPaths>
 #include <QTest>
 
 TestMainWindow::TestMainWindow()


Reply via email to