Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package khtml for openSUSE:Factory checked 
in at 2023-08-20 00:10:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/khtml (Old)
 and      /work/SRC/openSUSE:Factory/.khtml.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "khtml"

Sun Aug 20 00:10:49 2023 rev:117 rq:1104577 version:5.109.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/khtml/khtml.changes      2023-07-09 
20:41:41.265616550 +0200
+++ /work/SRC/openSUSE:Factory/.khtml.new.1766/khtml.changes    2023-08-20 
00:13:36.783163958 +0200
@@ -1,0 +2,10 @@
+Tue Aug  8 17:42:55 UTC 2023 - Christophe Marin <christo...@krop.fr>
+
+- Update to 5.109.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.109.0
+- Changes since 5.108.0:
+  * Add explicit moc includes to sources for moc-covered headers
+
+-------------------------------------------------------------------

Old:
----
  khtml-5.108.0.tar.xz
  khtml-5.108.0.tar.xz.sig

New:
----
  khtml-5.109.0.tar.xz
  khtml-5.109.0.tar.xz.sig

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

Other differences:
------------------
++++++ khtml.spec ++++++
--- /var/tmp/diff_new_pack.5jrbWT/_old  2023-08-20 00:13:37.863166082 +0200
+++ /var/tmp/diff_new_pack.5jrbWT/_new  2023-08-20 00:13:37.911166177 +0200
@@ -24,7 +24,7 @@
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without released
 Name:           khtml
-Version:        5.108.0
+Version:        5.109.0
 Release:        0
 Summary:        HTML rendering engine
 License:        LGPL-2.1-or-later


++++++ khtml-5.108.0.tar.xz -> khtml-5.109.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/CMakeLists.txt 
new/khtml-5.109.0/CMakeLists.txt
--- old/khtml-5.108.0/CMakeLists.txt    2023-07-01 11:57:45.000000000 +0200
+++ new/khtml-5.109.0/CMakeLists.txt    2023-08-05 14:37:04.000000000 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.108.0") # handled by release scripts
-set(KF_DEP_VERSION "5.108.0") # handled by release scripts
+set(KF_VERSION "5.109.0") # handled by release scripts
+set(KF_DEP_VERSION "5.109.0") # handled by release scripts
 project(KHtml VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.108.0  NO_MODULE)
+find_package(ECM 5.109.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/khtml-5.108.0/autotests/kencodingdetectortest.cpp 
new/khtml-5.109.0/autotests/kencodingdetectortest.cpp
--- old/khtml-5.108.0/autotests/kencodingdetectortest.cpp       2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/autotests/kencodingdetectortest.cpp       2023-08-05 
14:37:04.000000000 +0200
@@ -86,3 +86,5 @@
 }
 
 QTEST_MAIN(KEncodingDetectorTest)
+
+#include "moc_kencodingdetectortest.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/autotests/khtmlparttest.cpp 
new/khtml-5.109.0/autotests/khtmlparttest.cpp
--- old/khtml-5.108.0/autotests/khtmlparttest.cpp       2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/autotests/khtmlparttest.cpp       2023-08-05 
14:37:04.000000000 +0200
@@ -67,3 +67,5 @@
     QVERIFY(view->part() == part);
     delete part;
 }
+
+#include "moc_khtmlparttest.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/autotests/khtmlparttest.h 
new/khtml-5.109.0/autotests/khtmlparttest.h
--- old/khtml-5.108.0/autotests/khtmlparttest.h 2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/autotests/khtmlparttest.h 2023-08-05 14:37:04.000000000 
+0200
@@ -18,6 +18,9 @@
  * Boston, MA 02110-1301, USA.
  */
 
+#ifndef KHTMLPARTTEST_H
+#define KHTMLPARTTEST_H
+
 #include <QObject>
 
 class KHTMLPart;
@@ -31,3 +34,5 @@
     void testConstructKHTMLViewFromInitList();
     void testConstructKHTMLViewBeforePart();
 };
+
+#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/po/fa/khtml5.po 
new/khtml-5.109.0/po/fa/khtml5.po
--- old/khtml-5.108.0/po/fa/khtml5.po   2023-07-01 11:57:45.000000000 +0200
+++ new/khtml-5.109.0/po/fa/khtml5.po   2023-08-05 14:37:04.000000000 +0200
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Lokalize 1.4\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -360,10 +360,11 @@
 msgstr "تأیید ارسال"
 
 #: html/html_formimpl.cpp:438
-#, kde-format
+#, fuzzy, kde-format
 msgid "&Send File"
 msgid_plural "&Send Files"
 msgstr[0] "ارسال پرونده‌ها‌"
+msgstr[1] ""
 
 #: html/html_formimpl.cpp:1687 html/html_formimpl.cpp:1908 khtml_part.cpp:4962
 #: khtmlview.cpp:2848 khtmlview.cpp:2892
@@ -1048,10 +1049,11 @@
 msgstr "صفحه بار شد."
 
 #: khtml_part.cpp:2404
-#, kde-format
+#, fuzzy, kde-format
 msgid "%1 Image of %2 loaded."
 msgid_plural "%1 Images of %2 loaded."
 msgstr[0] "%1 تصویر از %2 بار شد."
+msgstr[1] ""
 
 #: khtml_part.cpp:2582
 #, kde-format
@@ -1074,10 +1076,11 @@
 msgstr "%1 )پیوند("
 
 #: khtml_part.cpp:3758
-#, kde-format
+#, fuzzy, kde-format
 msgid "%2 (%1 byte)"
 msgid_plural "%2 (%1 bytes)"
 msgstr[0] "%2 (%1 بایت)"
+msgstr[1] ""
 
 #: khtml_part.cpp:3761
 #, kde-format
@@ -1320,10 +1323,11 @@
 "یا باز کردن بالاپر، این شمایل را در میله 
وضعیت فشار دهید."
 
 #: khtml_part.cpp:7652
-#, kde-format
+#, fuzzy, kde-format
 msgid "&Show Blocked Popup Window"
 msgid_plural "&Show %1 Blocked Popup Windows"
 msgstr[0] "نمایش %1 پنجرهٔ بالاپر مسدودشده"
+msgstr[1] ""
 
 #: khtml_part.cpp:7654
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/po/ia/khtml5.po 
new/khtml-5.109.0/po/ia/khtml5.po
--- old/khtml-5.108.0/po/ia/khtml5.po   2023-07-01 11:57:45.000000000 +0200
+++ new/khtml-5.109.0/po/ia/khtml5.po   2023-08-05 14:37:04.000000000 +0200
@@ -4819,7 +4819,7 @@
 #~ msgstr "Pagina Domo o Principal"
 
 #~ msgid "About KDE"
-#~ msgstr "A proposio de KDE"
+#~ msgstr "A proposito de KDE"
 
 #~ msgid ""
 #~ "<html><font size=\"5\">KDE - Be Free!</font><br /><b>Platform Version %1</"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/po/ko/khtml5.po 
new/khtml-5.109.0/po/ko/khtml5.po
--- old/khtml-5.108.0/po/ko/khtml5.po   2023-07-01 11:57:45.000000000 +0200
+++ new/khtml-5.109.0/po/ko/khtml5.po   2023-08-05 14:37:04.000000000 +0200
@@ -198,7 +198,7 @@
 "Do you want to stop the script?"
 msgstr ""
 "이 페이지의 스크립트 때문에 KHTML이 멈추었습니다. 만약 
계속 실행한다면 다른 "
-"프로그램의 응답이 느려집니다.\n"
+"앱의 응답이 느려집니다.\n"
 "스크립트를 중지하시겠습니까?"
 
 #: ecma/kjs_binding.cpp:195
@@ -1343,9 +1343,9 @@
 "<qt><p><strong>'프린터 친화 모드'</strong></p><p>만약 이 설정을 
사용하면 "
 "HTML 문서는 흑백으로 출력되며, 모든 색이 있는 배경은 
흰색으로 변환됩니다. 출"
 "력 과정은 더 빨라지며, 잉크나 토너를 절약할 수 
있습니다.</p><p>이 설정을 사용"
-"하지 않으면, HTML 문서는 프로그램에서 보았던 원본 색상 
설정 그대로 출력됩니"
-"다. 이것은 모든 쪽을 컬러로 (흑백 프린터를 사용한다면 
흑백으로) 출력합니다. "
-"출력 속도가 느려질 수 있으며, 더 많은 잉크나 토너를 
사용합니다.</p> </qt>"
+"하지 않으면, HTML 문서는 앱에서 보았던 원본 색상 설정 
그대로 출력됩니다. 이것"
+"은 모든 쪽을 컬러로 (흑백 프린터를 사용한다면 
흑백으로) 출력합니다. 출력 속도"
+"가 느려질 수 있으며, 더 많은 잉크나 토너를 
사용합니다.</p> </qt>"
 
 #: khtml_printsettings.cpp:70
 #, kde-format
@@ -1437,10 +1437,10 @@
 msgstr ""
 "이 대화 상자는 웹 페이지에 있는 스크립트 오류에 대한 
자세한 정보와 경고를 표"
 "시합니다. 대부분의 경우 웹사이트 제작자의 설계 오류 
때문에 발생하는 것입니"
-"다. 그렇지 않다면 Konqueror의 프로그램 오류일 수 
있습니다. 전자라고 생각하면 "
-"사이트 관리자에게 질문을 보내십시오. 반대로 Konqueror의 
내부 오류라고 생각하"
-"ë©´ https://bugs.kde.org/ 사이트에 버그를 알려 주십시오. 문ì 
œë¥¼ 다시 재현할 "
-"수 있는 예제도 같이 설명해서 보내 주십시오."
+"다. 그렇지 않다면 Konqueror의 앱 오류일 수 있습니다. ì 
„자라고 생각하면 사이"
+"트 관리자에게 질문을 보내십시오. 반대로 Konqueror의 내부 
오류라고 생각하면 "
+"https://bugs.kde.org/ 사이트에 버그를 알려 주십시오. 문제를 
다시 재현할 수 있"
+"는 예제도 같이 설명해서 보내 주십시오."
 
 #: kmultipart/httpfiltergzip.cpp:89
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/po/tr/khtml5.po 
new/khtml-5.109.0/po/tr/khtml5.po
--- old/khtml-5.108.0/po/tr/khtml5.po   2023-07-01 11:57:45.000000000 +0200
+++ new/khtml-5.109.0/po/tr/khtml5.po   2023-08-05 14:37:04.000000000 +0200
@@ -23,7 +23,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-06 00:42+0000\n"
-"PO-Revision-Date: 2023-06-04 01:40+0300\n"
+"PO-Revision-Date: 2023-07-04 00:53+0300\n"
 "Last-Translator: Emir SARI <emir_s...@icloud.com>\n"
 "Language-Team: Turkish <kde-l10n...@kde.org>\n"
 "Language: tr\n"
@@ -184,7 +184,7 @@
 #: ecma/debugger/errordlg.cpp:49
 #, kde-format
 msgid "&Do not show this message again"
-msgstr "&Bu mesajı bir daha gösterme"
+msgstr "&Bu iletiyi bir daha gösterme"
 
 #: ecma/debugger/localvariabledock.cpp:43
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/po/zh_CN/khtml5.po 
new/khtml-5.109.0/po/zh_CN/khtml5.po
--- old/khtml-5.108.0/po/zh_CN/khtml5.po        2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/po/zh_CN/khtml5.po        2023-08-05 14:37:04.000000000 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-06 00:42+0000\n"
-"PO-Revision-Date: 2023-06-17 04:11\n"
+"PO-Revision-Date: 2023-08-02 12:40\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/debugger/breakpointsdock.cpp 
new/khtml-5.109.0/src/ecma/debugger/breakpointsdock.cpp
--- old/khtml-5.108.0/src/ecma/debugger/breakpointsdock.cpp     2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/debugger/breakpointsdock.cpp     2023-08-05 
14:37:04.000000000 +0200
@@ -39,3 +39,5 @@
 }
 
 }
+
+#include "moc_breakpointsdock.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/debugger/callstackdock.cpp 
new/khtml-5.109.0/src/ecma/debugger/callstackdock.cpp
--- old/khtml-5.108.0/src/ecma/debugger/callstackdock.cpp       2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/debugger/callstackdock.cpp       2023-08-05 
14:37:04.000000000 +0200
@@ -128,3 +128,5 @@
 }
 
 }
+
+#include "moc_callstackdock.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/debugger/consoledock.cpp 
new/khtml-5.109.0/src/ecma/debugger/consoledock.cpp
--- old/khtml-5.108.0/src/ecma/debugger/consoledock.cpp 2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/debugger/consoledock.cpp 2023-08-05 
14:37:04.000000000 +0200
@@ -286,3 +286,5 @@
 }
 
 }
+
+#include "moc_consoledock.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/debugger/debugdocument.cpp 
new/khtml-5.109.0/src/ecma/debugger/debugdocument.cpp
--- old/khtml-5.108.0/src/ecma/debugger/debugdocument.cpp       2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/debugger/debugdocument.cpp       2023-08-05 
14:37:04.000000000 +0200
@@ -298,3 +298,4 @@
     return m_kteView;
 }
 
+#include "moc_debugdocument.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/debugger/debugwindow.cpp 
new/khtml-5.109.0/src/ecma/debugger/debugwindow.cpp
--- old/khtml-5.108.0/src/ecma/debugger/debugwindow.cpp 2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/debugger/debugwindow.cpp 2023-08-05 
14:37:04.000000000 +0200
@@ -1013,3 +1013,4 @@
     }
 }
 
+#include "moc_debugwindow.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/debugger/errordlg.cpp 
new/khtml-5.109.0/src/ecma/debugger/errordlg.cpp
--- old/khtml-5.108.0/src/ecma/debugger/errordlg.cpp    2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/debugger/errordlg.cpp    2023-08-05 
14:37:04.000000000 +0200
@@ -74,3 +74,5 @@
 }
 
 }
+
+#include "moc_errordlg.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/khtml-5.108.0/src/ecma/debugger/localvariabledock.cpp 
new/khtml-5.109.0/src/ecma/debugger/localvariabledock.cpp
--- old/khtml-5.108.0/src/ecma/debugger/localvariabledock.cpp   2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/debugger/localvariabledock.cpp   2023-08-05 
14:37:04.000000000 +0200
@@ -185,3 +185,5 @@
 }
 
 }
+
+#include "moc_localvariabledock.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/debugger/scriptsdock.cpp 
new/khtml-5.109.0/src/ecma/debugger/scriptsdock.cpp
--- old/khtml-5.108.0/src/ecma/debugger/scriptsdock.cpp 2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/debugger/scriptsdock.cpp 2023-08-05 
14:37:04.000000000 +0200
@@ -148,3 +148,4 @@
     }
 }
 
+#include "moc_scriptsdock.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/debugger/watchesdock.cpp 
new/khtml-5.109.0/src/ecma/debugger/watchesdock.cpp
--- old/khtml-5.108.0/src/ecma/debugger/watchesdock.cpp 2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/debugger/watchesdock.cpp 2023-08-05 
14:37:04.000000000 +0200
@@ -37,3 +37,5 @@
 }
 
 }
+
+#include "moc_watchesdock.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/kjs_scriptable.cpp 
new/khtml-5.109.0/src/ecma/kjs_scriptable.cpp
--- old/khtml-5.108.0/src/ecma/kjs_scriptable.cpp       2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/kjs_scriptable.cpp       2023-08-05 
14:37:04.000000000 +0200
@@ -974,3 +974,4 @@
 
 } // namespace KJS
 
+#include "moc_kjs_scriptable.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/kjs_window.cpp 
new/khtml-5.109.0/src/ecma/kjs_window.cpp
--- old/khtml-5.108.0/src/ecma/kjs_window.cpp   2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/ecma/kjs_window.cpp   2023-08-05 14:37:04.000000000 
+0200
@@ -3358,3 +3358,4 @@
 
 } // namespace KJS
 
+#include "moc_kjs_window.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ecma/xmlhttprequest.cpp 
new/khtml-5.109.0/src/ecma/xmlhttprequest.cpp
--- old/khtml-5.108.0/src/ecma/xmlhttprequest.cpp       2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ecma/xmlhttprequest.cpp       2023-08-05 
14:37:04.000000000 +0200
@@ -990,3 +990,4 @@
 
 } // end namespace
 
+#include "moc_xmlhttprequest.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/editing/editor.cpp 
new/khtml-5.109.0/src/editing/editor.cpp
--- old/khtml-5.108.0/src/editing/editor.cpp    2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/editing/editor.cpp    2023-08-05 14:37:04.000000000 
+0200
@@ -615,3 +615,4 @@
 
 }
 
+#include "moc_editor.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/html/html_documentimpl.cpp 
new/khtml-5.109.0/src/html/html_documentimpl.cpp
--- old/khtml-5.108.0/src/html/html_documentimpl.cpp    2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/html/html_documentimpl.cpp    2023-08-05 
14:37:04.000000000 +0200
@@ -410,3 +410,4 @@
     return new HTMLTextTokenizer(this);
 }
 
+#include "moc_html_documentimpl.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/html/html_objectimpl.cpp 
new/khtml-5.109.0/src/html/html_objectimpl.cpp
--- old/khtml-5.108.0/src/html/html_objectimpl.cpp      2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/html/html_objectimpl.cpp      2023-08-05 
14:37:04.000000000 +0200
@@ -880,3 +880,4 @@
     }
 }
 
+#include "moc_html_objectimpl.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/imload/animtimer.cpp 
new/khtml-5.109.0/src/imload/animtimer.cpp
--- old/khtml-5.108.0/src/imload/animtimer.cpp  2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/imload/animtimer.cpp  2023-08-05 14:37:04.000000000 
+0200
@@ -91,3 +91,4 @@
 
 }
 
+#include "moc_animtimer.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/imload/updater.cpp 
new/khtml-5.109.0/src/imload/updater.cpp
--- old/khtml-5.108.0/src/imload/updater.cpp    2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/imload/updater.cpp    2023-08-05 14:37:04.000000000 
+0200
@@ -104,3 +104,4 @@
 
 }
 
+#include "moc_updater.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtml_childframe.cpp 
new/khtml-5.109.0/src/khtml_childframe.cpp
--- old/khtml-5.108.0/src/khtml_childframe.cpp  2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/khtml_childframe.cpp  2023-08-05 14:37:04.000000000 
+0200
@@ -139,3 +139,4 @@
     return it;
 }
 
+#include "moc_khtml_childframe_p.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtml_ext.cpp 
new/khtml-5.109.0/src/khtml_ext.cpp
--- old/khtml-5.108.0/src/khtml_ext.cpp 2023-07-01 11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/khtml_ext.cpp 2023-08-05 14:37:04.000000000 +0200
@@ -1271,3 +1271,4 @@
     return static_cast<KHTMLPart *>(parent());
 }
 
+#include "moc_khtml_ext.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtml_factory.cpp 
new/khtml-5.109.0/src/khtml_factory.cpp
--- old/khtml-5.108.0/src/khtml_factory.cpp     2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/khtml_factory.cpp     2023-08-05 14:37:04.000000000 
+0200
@@ -52,3 +52,5 @@
 
     return new KHTMLPart(parentWidget, parent, prof);
 }
+
+#include "moc_khtml_factory.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtml_iface.cpp 
new/khtml-5.109.0/src/khtml_iface.cpp
--- old/khtml-5.108.0/src/khtml_iface.cpp       2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/khtml_iface.cpp       2023-08-05 14:37:04.000000000 
+0200
@@ -236,3 +236,4 @@
     part->view()->print(quick);
 }
 
+#include "moc_khtml_iface.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtml_pagecache.cpp 
new/khtml-5.109.0/src/khtml_pagecache.cpp
--- old/khtml-5.108.0/src/khtml_pagecache.cpp   2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/khtml_pagecache.cpp   2023-08-05 14:37:04.000000000 
+0200
@@ -299,3 +299,4 @@
     delete file;
 }
 
+#include "moc_khtml_pagecache.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtml_part.cpp 
new/khtml-5.109.0/src/khtml_part.cpp
--- old/khtml-5.108.0/src/khtml_part.cpp        2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/khtml_part.cpp        2023-08-05 14:37:04.000000000 
+0200
@@ -7716,3 +7716,4 @@
 #include "moc_khtml_wallet_p.cpp"
 #endif
 
+#include "moc_khtml_part.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtml_printsettings.cpp 
new/khtml-5.109.0/src/khtml_printsettings.cpp
--- old/khtml-5.108.0/src/khtml_printsettings.cpp       2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/khtml_printsettings.cpp       2023-08-05 
14:37:04.000000000 +0200
@@ -105,3 +105,4 @@
     return m_printheader->isChecked();
 }
 
+#include "moc_khtml_printsettings.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtml_run.cpp 
new/khtml-5.109.0/src/khtml_run.cpp
--- old/khtml-5.108.0/src/khtml_run.cpp 2023-07-01 11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/khtml_run.cpp 2023-08-05 14:37:04.000000000 +0200
@@ -106,3 +106,4 @@
     KHTMLPopupGUIClient::saveURL(part()->widget(), i18n("Save As"), url, 
arguments().metaData(), QString(), 0, suggestedFilename);
 }
 
+#include "moc_khtml_run.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtmladaptorpart.cpp 
new/khtml-5.109.0/src/khtmladaptorpart.cpp
--- old/khtml-5.108.0/src/khtmladaptorpart.cpp  2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/khtmladaptorpart.cpp  2023-08-05 14:37:04.000000000 
+0200
@@ -65,3 +65,4 @@
     return new AdaptorView(wparent, parent, QStringList());
 }
 
+#include "moc_khtmladaptorpart.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtmlimage.cpp 
new/khtml-5.109.0/src/khtmlimage.cpp
--- old/khtml-5.108.0/src/khtmlimage.cpp        2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/khtmlimage.cpp        2023-08-05 14:37:04.000000000 
+0200
@@ -337,3 +337,4 @@
     m_ext->popupMenu(global, url, mode, args, browserArgs, flags, 
actionGroups);
 }
 
+#include "moc_khtmlimage.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtmlimage.desktop 
new/khtml-5.109.0/src/khtmlimage.desktop
--- old/khtml-5.108.0/src/khtmlimage.desktop    2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/khtmlimage.desktop    2023-08-05 14:37:04.000000000 
+0200
@@ -182,7 +182,7 @@
 Name[te]=పొదిగిన ప్రతిబింబ చూపరి
 Name[tg]=Намоишгари тасвирҳои дарунсохт
 Name[th]=ตัวแสดงภาพแบบฝังตัวได้
-Name[tr]=Gömülü Resim Görüntüleyici
+Name[tr]=Gömülü Görsel Görüntüleyicisi
 Name[tt]=Сурәт өчен кушымта компоненты
 Name[ug]=سىڭدۈرۈشچان سۈرەت كۆرگۈچ
 Name[uk]=Вмонтований переглядач зображень
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtmlview.cpp 
new/khtml-5.109.0/src/khtmlview.cpp
--- old/khtml-5.108.0/src/khtmlview.cpp 2023-07-01 11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/khtmlview.cpp 2023-08-05 14:37:04.000000000 +0200
@@ -4498,3 +4498,5 @@
 }
 
 #undef DEBUG_CARETMODE
+
+#include "moc_khtmlview.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtmlviewbar.cpp 
new/khtml-5.109.0/src/khtmlviewbar.cpp
--- old/khtml-5.108.0/src/khtmlviewbar.cpp      2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/khtmlviewbar.cpp      2023-08-05 14:37:04.000000000 
+0200
@@ -143,3 +143,5 @@
 //   if (!event->spontaneous())
 //     m_view->setFocus();
 }
+
+#include "moc_khtmlviewbar.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/khtmlviewbarwidget.cpp 
new/khtml-5.109.0/src/khtmlviewbarwidget.cpp
--- old/khtml-5.108.0/src/khtmlviewbarwidget.cpp        2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/khtmlviewbarwidget.cpp        2023-08-05 
14:37:04.000000000 +0200
@@ -56,3 +56,5 @@
     }
     QWidget::resizeEvent(event);
 }
+
+#include "moc_khtmlviewbarwidget.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/kjserrordlg.cpp 
new/khtml-5.109.0/src/kjserrordlg.cpp
--- old/khtml-5.108.0/src/kjserrordlg.cpp       2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/kjserrordlg.cpp       2023-08-05 14:37:04.000000000 
+0200
@@ -33,3 +33,5 @@
 {
     _errorText->setAcceptRichText(false);
 }
+
+#include "moc_kjserrordlg.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/kmultipart/httpfiltergzip.cpp 
new/khtml-5.109.0/src/kmultipart/httpfiltergzip.cpp
--- old/khtml-5.108.0/src/kmultipart/httpfiltergzip.cpp 2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/kmultipart/httpfiltergzip.cpp 2023-08-05 
14:37:04.000000000 +0200
@@ -92,3 +92,5 @@
         }
     }
 }
+
+#include "moc_httpfiltergzip_p.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/kmultipart/kmultipart.cpp 
new/khtml-5.109.0/src/kmultipart/kmultipart.cpp
--- old/khtml-5.108.0/src/kmultipart/kmultipart.cpp     2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/kmultipart/kmultipart.cpp     2023-08-05 
14:37:04.000000000 +0200
@@ -598,3 +598,5 @@
 #endif
 
 #include "kmultipart.moc"
+
+#include "moc_kmultipart.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/misc/loader.cpp 
new/khtml-5.109.0/src/misc/loader.cpp
--- old/khtml-5.108.0/src/misc/loader.cpp       2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/misc/loader.cpp       2023-08-05 14:37:04.000000000 
+0200
@@ -1823,3 +1823,4 @@
 
 #undef CDEBUG
 
+#include "moc_loader.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/misc/paintbuffer.cpp 
new/khtml-5.109.0/src/misc/paintbuffer.cpp
--- old/khtml-5.108.0/src/misc/paintbuffer.cpp  2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/misc/paintbuffer.cpp  2023-08-05 14:37:04.000000000 
+0200
@@ -278,3 +278,5 @@
 #endif
     delete bp;
 }
+
+#include "moc_paintbuffer.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/rendering/media_controls.cpp 
new/khtml-5.109.0/src/rendering/media_controls.cpp
--- old/khtml-5.108.0/src/rendering/media_controls.cpp  2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/rendering/media_controls.cpp  2023-08-05 
14:37:04.000000000 +0200
@@ -94,3 +94,4 @@
 
 }
 
+#include "moc_media_controls.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/rendering/render_form.cpp 
new/khtml-5.109.0/src/rendering/render_form.cpp
--- old/khtml-5.108.0/src/rendering/render_form.cpp     2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/rendering/render_form.cpp     2023-08-05 
14:37:04.000000000 +0200
@@ -2573,3 +2573,4 @@
 }
 // ---------------------------------------------------------------------------
 
+#include "moc_render_form.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/rendering/render_frames.cpp 
new/khtml-5.109.0/src/rendering/render_frames.cpp
--- old/khtml-5.108.0/src/rendering/render_frames.cpp   2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/rendering/render_frames.cpp   2023-08-05 
14:37:04.000000000 +0200
@@ -793,3 +793,4 @@
     }
 }
 
+#include "moc_render_frames.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/rendering/render_layer.cpp 
new/khtml-5.109.0/src/rendering/render_layer.cpp
--- old/khtml-5.108.0/src/rendering/render_layer.cpp    2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/rendering/render_layer.cpp    2023-08-05 
14:37:04.000000000 +0200
@@ -2171,3 +2171,4 @@
     }
 }
 
+#include "moc_render_layer.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/rendering/render_media.cpp 
new/khtml-5.109.0/src/rendering/render_media.cpp
--- old/khtml-5.108.0/src/rendering/render_media.cpp    2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/rendering/render_media.cpp    2023-08-05 
14:37:04.000000000 +0200
@@ -121,3 +121,5 @@
 }
 
 }
+
+#include "moc_render_media.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/rendering/render_replaced.cpp 
new/khtml-5.109.0/src/rendering/render_replaced.cpp
--- old/khtml-5.108.0/src/rendering/render_replaced.cpp 2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/rendering/render_replaced.cpp 2023-08-05 
14:37:04.000000000 +0200
@@ -1348,3 +1348,4 @@
     delete m_kwp;
 }
 
+#include "moc_render_replaced.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ui/findbar/khtmlfind.cpp 
new/khtml-5.109.0/src/ui/findbar/khtmlfind.cpp
--- old/khtml-5.108.0/src/ui/findbar/khtmlfind.cpp      2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ui/findbar/khtmlfind.cpp      2023-08-05 
14:37:04.000000000 +0200
@@ -619,3 +619,5 @@
 {
     findTextNext(true);    // find backwards
 }
+
+#include "moc_khtmlfind_p.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ui/findbar/khtmlfindbar.cpp 
new/khtml-5.109.0/src/ui/findbar/khtmlfindbar.cpp
--- old/khtml-5.108.0/src/ui/findbar/khtmlfindbar.cpp   2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ui/findbar/khtmlfindbar.cpp   2023-08-05 
14:37:04.000000000 +0200
@@ -269,3 +269,5 @@
     }
     return KHTMLViewBarWidget::event(e);
 }
+
+#include "moc_khtmlfindbar.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/ui/passwordbar/storepassbar.cpp 
new/khtml-5.109.0/src/ui/passwordbar/storepassbar.cpp
--- old/khtml-5.108.0/src/ui/passwordbar/storepassbar.cpp       2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/src/ui/passwordbar/storepassbar.cpp       2023-08-05 
14:37:04.000000000 +0200
@@ -117,3 +117,5 @@
 {
     removeBar();
 }
+
+#include "moc_storepassbar.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/xml/dom_docimpl.cpp 
new/khtml-5.109.0/src/xml/dom_docimpl.cpp
--- old/khtml-5.108.0/src/xml/dom_docimpl.cpp   2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/xml/dom_docimpl.cpp   2023-08-05 14:37:04.000000000 
+0200
@@ -3415,3 +3415,4 @@
     }
 }
 
+#include "moc_dom_docimpl.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/src/xml/xml_tokenizer.cpp 
new/khtml-5.109.0/src/xml/xml_tokenizer.cpp
--- old/khtml-5.108.0/src/xml/xml_tokenizer.cpp 2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/src/xml/xml_tokenizer.cpp 2023-08-05 14:37:04.000000000 
+0200
@@ -678,3 +678,4 @@
     }
 }
 
+#include "moc_xml_tokenizer.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/tests/test_regression.cpp 
new/khtml-5.109.0/tests/test_regression.cpp
--- old/khtml-5.108.0/tests/test_regression.cpp 2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/tests/test_regression.cpp 2023-08-05 14:37:04.000000000 
+0200
@@ -1939,3 +1939,4 @@
     QApplication::sendPostedEvents(0, QEvent::Resize);
 }
 
+#include "moc_test_regression.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/tests/test_regression_gui_window.cpp 
new/khtml-5.109.0/tests/test_regression_gui_window.cpp
--- old/khtml-5.108.0/tests/test_regression_gui_window.cpp      2023-07-01 
11:57:45.000000000 +0200
+++ new/khtml-5.109.0/tests/test_regression_gui_window.cpp      2023-08-05 
14:37:04.000000000 +0200
@@ -1190,3 +1190,4 @@
     file.close();
 }
 
+#include "moc_test_regression_gui_window.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/tests/testkhtml.cpp 
new/khtml-5.109.0/tests/testkhtml.cpp
--- old/khtml-5.108.0/tests/testkhtml.cpp       2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/tests/testkhtml.cpp       2023-08-05 14:37:04.000000000 
+0200
@@ -211,3 +211,5 @@
     ++benchmarkRun;
     QTimer::singleShot(100, this, SLOT(nextRun()));
 }
+
+#include "moc_testkhtml.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.108.0/tests/testkhtmlnew.cpp 
new/khtml-5.109.0/tests/testkhtmlnew.cpp
--- old/khtml-5.108.0/tests/testkhtmlnew.cpp    2023-07-01 11:57:45.000000000 
+0200
+++ new/khtml-5.109.0/tests/testkhtmlnew.cpp    2023-08-05 14:37:04.000000000 
+0200
@@ -257,3 +257,4 @@
     return app.exec();
 }
 
+#include "moc_testkhtmlnew.cpp"

Reply via email to