Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sweeper for openSUSE:Factory checked in at 2021-04-25 21:27:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sweeper (Old) and /work/SRC/openSUSE:Factory/.sweeper.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sweeper" Sun Apr 25 21:27:18 2021 rev:119 rq:887796 version:21.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/sweeper/sweeper.changes 2021-03-10 08:56:19.158831016 +0100 +++ /work/SRC/openSUSE:Factory/.sweeper.new.12324/sweeper.changes 2021-04-25 21:28:53.552536549 +0200 @@ -1,0 +2,27 @@ +Fri Apr 16 16:13:29 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.04.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/21.04 +- No code change since 21.03.90 + +------------------------------------------------------------------- +Fri Apr 9 17:41:54 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.03.90 + * New feature release +- No code change since 21.03.80 + +------------------------------------------------------------------- +Sun Mar 21 13:30:03 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.03.80 + * New feature release +- Changes since 20.12.3: + * We depend against kf5.68 + * it's a private member + * Use debug categories + * Modernize CMakeLists + +------------------------------------------------------------------- Old: ---- sweeper-20.12.3.tar.xz sweeper-20.12.3.tar.xz.sig New: ---- sweeper-21.04.0.tar.xz sweeper-21.04.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sweeper.spec ++++++ --- /var/tmp/diff_new_pack.OjrZ0D/_old 2021-04-25 21:28:54.060537160 +0200 +++ /var/tmp/diff_new_pack.OjrZ0D/_new 2021-04-25 21:28:54.064537165 +0200 @@ -1,7 +1,7 @@ # # spec file for package sweeper # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,13 +21,17 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: sweeper -Version: 20.12.3 +Version: 21.04.0 Release: 0 Summary: KDE Privacy Utility License: LGPL-2.1-or-later Group: System/GUI/KDE -URL: https://www.kde.org +URL: https://apps.kde.org/sweeper Source: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz +%if %{with lang} +Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig +Source2: applications.keyring +%endif BuildRequires: breeze5-icons BuildRequires: extra-cmake-modules BuildRequires: update-desktop-files @@ -45,10 +49,6 @@ BuildRequires: cmake(Qt5Core) BuildRequires: cmake(Qt5DBus) BuildRequires: cmake(Qt5Widgets) -%if %{with lang} -Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig -Source2: applications.keyring -%endif Recommends: %{name}-lang %description @@ -57,7 +57,7 @@ %lang_package %prep -%setup -q -n sweeper-%{version} +%autosetup -p1 -n sweeper-%{version} %build %cmake_kf5 -d build @@ -81,6 +81,7 @@ %{_kf5_applicationsdir}/org.kde.sweeper.desktop %{_kf5_appstreamdir}/org.kde.sweeper.appdata.xml %{_kf5_bindir}/sweeper +%{_kf5_debugdir}/sweeper.categories %{_kf5_iconsdir}/hicolor/scalable/*/* %{_kf5_kxmlguidir}/sweeper/ %{_kf5_sharedir}/dbus-1/interfaces/*.xml ++++++ sweeper-20.12.3.tar.xz -> sweeper-21.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sweeper-20.12.3/CMakeLists.txt new/sweeper-21.04.0/CMakeLists.txt --- old/sweeper-20.12.3/CMakeLists.txt 2021-03-02 01:41:21.000000000 +0100 +++ new/sweeper-21.04.0/CMakeLists.txt 2021-04-16 10:39:55.000000000 +0200 @@ -1,15 +1,15 @@ -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.5 FATAL_ERROR) # KDE Application Version, managed by release script -set (RELEASE_SERVICE_VERSION_MAJOR "20") -set (RELEASE_SERVICE_VERSION_MINOR "12") -set (RELEASE_SERVICE_VERSION_MICRO "3") +set (RELEASE_SERVICE_VERSION_MAJOR "21") +set (RELEASE_SERVICE_VERSION_MINOR "04") +set (RELEASE_SERVICE_VERSION_MICRO "0") set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(sweeper VERSION ${RELEASE_SERVICE_VERSION}) -set(REQUIRED_KF5_MIN_VERSION "5.23.0") -set(REQUIRED_QT_VERSION "5.4.0") +set(REQUIRED_KF5_MIN_VERSION "5.68.0") +set(REQUIRED_QT_VERSION "5.12.0") include(FeatureSummary) find_package(Qt5 ${REQUIRED_QT_VERSION} REQUIRED COMPONENTS Core DBus Widgets) @@ -20,10 +20,12 @@ include(KDEInstallDirs) include(KDECMakeSettings) include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) +include(ECMQtDeclareLoggingCategory) add_definitions( - -DQT_DISABLE_DEPRECATED_BEFORE=0x050400 + -DQT_DISABLE_DEPRECATED_BEFORE=0x050C00 -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT + -DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054400 ) find_package(KF5 ${REQUIRED_KF5_MIN_VERSION} REQUIRED COMPONENTS @@ -40,10 +42,7 @@ XmlGui ) -if (KF5Config_VERSION VERSION_GREATER "5.56.0") - add_definitions(-DQT_NO_FOREACH) - MESSAGE(STATUS "compile without foreach") -endif() +add_definitions(-DQT_NO_FOREACH) include_directories (${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) @@ -57,6 +56,7 @@ sweeper.cpp privacyfunctions.cpp privacyaction.cpp ) +ecm_qt_declare_logging_category(sweeper_SRCS HEADER sweeper_debug.h IDENTIFIER SWEEPER_LOG CATEGORY_NAME org.kde.sweeper DESCRIPTION "sweeper" EXPORT SWEEPER) qt5_add_dbus_adaptor( sweeper_SRCS org.kde.sweeper.xml sweeper.h Sweeper) @@ -81,18 +81,22 @@ KF5::XmlGui ) -install(TARGETS sweeper ${INSTALL_TARGETS_DEFAULT_ARGS} ) +install(TARGETS sweeper ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} ) ########### install files ############### install( PROGRAMS org.kde.sweeper.desktop DESTINATION ${KDE_INSTALL_APPDIR}) -install( FILES sweeperui.rc DESTINATION ${KXMLGUI_INSTALL_DIR}/sweeper) +install( FILES sweeperui.rc DESTINATION ${KDE_INSTALL_KXMLGUI5DIR}/sweeper) install( FILES org.kde.sweeper.xml DESTINATION ${KDE_INSTALL_DBUSINTERFACEDIR} ) install( FILES org.kde.sweeper.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR}) add_subdirectory(doc) - +ecm_qt_install_logging_categories( + EXPORT SWEEPER + FILE sweeper.categories + DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR} + ) feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) ki18n_install(po) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sweeper-20.12.3/doc/CMakeLists.txt new/sweeper-21.04.0/doc/CMakeLists.txt --- old/sweeper-20.12.3/doc/CMakeLists.txt 2021-02-25 00:18:59.000000000 +0100 +++ new/sweeper-21.04.0/doc/CMakeLists.txt 2021-04-14 17:13:34.000000000 +0200 @@ -1 +1 @@ -kdoctools_create_handbook( index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/en SUBDIR sweeper) +kdoctools_create_handbook( index.docbook INSTALL_DESTINATION ${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR sweeper) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sweeper-20.12.3/org.kde.sweeper.appdata.xml new/sweeper-21.04.0/org.kde.sweeper.appdata.xml --- old/sweeper-20.12.3/org.kde.sweeper.appdata.xml 2021-02-25 00:18:59.000000000 +0100 +++ new/sweeper-21.04.0/org.kde.sweeper.appdata.xml 2021-04-14 17:13:34.000000000 +0200 @@ -131,9 +131,9 @@ <binary>sweeper</binary> </provides> <releases> + <release version="21.04.0" date="2021-04-22"/> <release version="20.12.3" date="2021-03-04"/> <release version="20.12.2" date="2021-02-04"/> <release version="20.12.1" date="2021-01-07"/> - <release version="20.12.0" date="2020-12-10"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sweeper-20.12.3/po/bg/sweeper.po new/sweeper-21.04.0/po/bg/sweeper.po --- old/sweeper-20.12.3/po/bg/sweeper.po 2021-03-02 01:41:20.000000000 +0100 +++ new/sweeper-21.04.0/po/bg/sweeper.po 2021-04-16 10:39:55.000000000 +0200 @@ -2,20 +2,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Zlatko Popov <zlatkopo...@fsa-bg.org>, 2006. -# Yasen Pramatarov <ya...@lindeas.com>, 2011. +# Yasen Pramatarov <ya...@lindeas.com>, 2011, 2021. msgid "" msgstr "" "Project-Id-Version: privacy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-02-14 03:28+0100\n" -"PO-Revision-Date: 2011-07-24 14:06+0300\n" +"PO-Revision-Date: 2021-01-11 13:56+0200\n" "Last-Translator: Yasen Pramatarov <ya...@lindeas.com>\n" -"Language-Team: Bulgarian <d...@linux.zonebg.com>\n" +"Language-Team: Bulgarian <d...@ludost.net>\n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.2\n" +"X-Generator: Lokalize 20.08.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -39,10 +39,9 @@ msgstr "???????????????????? ???? ???????????????? ??????????, ???????????????? ???? ?????????????????????? ?? ??????????????????." #: main.cpp:47 -#, fuzzy, kde-format -#| msgid "(c) 2003-2005, Ralf Hoelzer" +#, kde-format msgid "?? 2003-2005, Ralf Hoelzer" -msgstr "(c) 2003-2005, Ralf Hoelzer" +msgstr "?? 2003-2005, Ralf Hoelzer" #: main.cpp:51 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sweeper-20.12.3/po/ru/docs/sweeper/index.docbook new/sweeper-21.04.0/po/ru/docs/sweeper/index.docbook --- old/sweeper-20.12.3/po/ru/docs/sweeper/index.docbook 2021-03-02 01:41:21.000000000 +0100 +++ new/sweeper-21.04.0/po/ru/docs/sweeper/index.docbook 1970-01-01 01:00:00.000000000 +0100 @@ -1,123 +0,0 @@ -<?xml version="1.0" ?> -<!DOCTYPE article PUBLIC "-//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN" "dtd/kdedbx45.dtd" [ - <!ENTITY % addindex "IGNORE"> - <!ENTITY % Russian "INCLUDE"> -]> - -<article id="sweeper" lang="&language;"> - -<articleinfo> -<title ->???????????????????? Sweeper</title> -<authorgroup> -<author ->&Burkhard.Lueck; &Burkhard.Lueck.mail;</author> - -<othercredit role="translator" -><firstname ->??????????</firstname -><surname ->????????????????</surname -><affiliation -><address -><email ->om...@basealt.ru</email -></address -></affiliation -><contrib ->?????????????? ???? ?????????????? ????????</contrib -></othercredit -><othercredit role="reviewer" -><firstname ->??????????????????</firstname -><surname ->????????????????</surname -><contrib ->????????????????????????????</contrib -></othercredit -><othercredit role="translator" -><firstname ->??????????</firstname -><surname ->??????????????????????</surname -><affiliation -><address -><email ->translation-t...@basealt.ru</email -></address -></affiliation -><contrib ->???????????????????? ???????????????? ???? ?????????????? ????????</contrib -></othercredit -> -</authorgroup> - -<date ->2018-01-03</date> -<releaseinfo ->1.11 (???????????????????? KDE 17.12)</releaseinfo> - -<keywordset> -<keyword ->KDE</keyword> -<keyword ->????????????????????????????????????</keyword> -<keyword ->????????????????????????</keyword> -</keywordset> -</articleinfo> - -<para ->???????????????????? &sweeper; ???????????? ?????? ???????????????? ???????????? ???????????? ???????????????????????? ?? ?????????????????? ???????????????? ?????????? &plasma; ?? ?? ???????????????????????? &kde;. </para> - -<para> -<screenshot> - <mediaobject> - <imageobject> - <imagedata fileref="sweeper.png" format="PNG"/> - </imageobject> - </mediaobject> -</screenshot> -</para> - -<para ->?????? ?????????????????? ?? ???????????????? ?????????? ?????????????????????? ???????????????????????????? ???????????????? <guibutton ->???????????????? ??????</guibutton -> ?? <guibutton ->???????????????? ??????????</guibutton -> ?????? ???????????????? ?????????????????????? ???????????? ?? ???????????????? <guilabel ->????????????????</guilabel -> ?? <guilabel ->???????????????? ??????????????????</guilabel ->. </para> - -<para ->???????????????? ?????????????? ???????????? ???????????? ?????? ???????????????? ?? ?????????????? ???????????? <guibutton ->????????????????</guibutton ->. ?????? ????????????, ?????????????????????????????? ???????????????????? ????????????????, ?????????? ??????????????. </para> - -<note -><para ->???????????????????? &sweeper; ?????????????????? ???????????????? ???????????????????????? ????????????, ?????????????? ???????????????????????? ???????????????????? ???????????????? ?????????? &plasma; ?? ???????????????????????? &kde;, ???? ?????????? ???????? &kde;. ?????????? ???????????? ???????????????????????? ???????? ??????????, ?????????????? ?? ???????????????????? &konsole; ?????????????? <userinput -><command ->qtpaths</command -> <option ->--paths GenericCacheLocation</option -></userinput ->. ?????????????? ???????????????????????? ???????????? ?? ?????????????? &sweeper;, ?????????????????? ?????????????? ?????????????????????? ???? ???????????? (????????????????, ???? ???? ?????????????? ?????????????????? ?? ?????????????? ???????????????????? ????????????). ???? ???????????? ???????????????? ???? ?????????????????????? ??? ???? ?????????? ???????????????? ???????????????????????????? ????????????, ?????????????? ?????????? ???????? ?????????????????? ???????????????????????????? ???????????????? ?????? ???????????? ?? ????????????. </para> -</note> - -</article> - -<!-- -Local Variables: -mode: xml -sgml-minimize-attributes:nil -sgml-general-insert-case:lower -sgml-indent-step:0 -sgml-indent-data:nil -End: - -vim:tabstop=2:shiftwidth=2:expandtab -kate: space-indent on; indent-width 2; tab-width 2; indent-mode none; ---> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sweeper-20.12.3/po/zh_CN/sweeper.po new/sweeper-21.04.0/po/zh_CN/sweeper.po --- old/sweeper-20.12.3/po/zh_CN/sweeper.po 2021-03-02 01:41:20.000000000 +0100 +++ new/sweeper-21.04.0/po/zh_CN/sweeper.po 2021-04-16 10:39:55.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-02-14 03:28+0100\n" -"PO-Revision-Date: 2021-02-04 12:00\n" +"PO-Revision-Date: 2021-03-27 17:31\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sweeper-20.12.3/privacyfunctions.cpp new/sweeper-21.04.0/privacyfunctions.cpp --- old/sweeper-20.12.3/privacyfunctions.cpp 2021-02-25 00:18:59.000000000 +0100 +++ new/sweeper-21.04.0/privacyfunctions.cpp 2021-04-14 17:13:34.000000000 +0200 @@ -19,6 +19,7 @@ */ #include "privacyfunctions.h" +#include "sweeper_debug.h" #include <KBookmarkManager> #include <KConfig> @@ -31,7 +32,6 @@ #include <QDBusConnectionInterface> #include <QDBusInterface> -#include <QDebug> #include <QDir> #include <QFile> #include <QLatin1String> @@ -108,7 +108,7 @@ KConfig cfg(QStringLiteral("kcookiejarrc")); KConfigGroup group = cfg.group("Cookie Policy"); - qDebug() << "removing all saved cookie policies" ; + qCDebug(SWEEPER_LOG) << "removing all saved cookie policies" ; group.deleteEntry("CookieDomainAdvice"); cfg.sync(); @@ -201,7 +201,7 @@ QDir().mkpath(path); konqiBookmarkMgr = KBookmarkManager::managerForFile(path, QStringLiteral("konqueror")); - qDebug() << "saving the favicons that are in konqueror bookmarks" + qCDebug(SWEEPER_LOG) << "saving the favicons that are in konqueror bookmarks" << "opened konqueror bookmarks at " << konqiBookmarkMgr->path() ; // get the entire slew of bookmarks @@ -215,7 +215,7 @@ // pick out the name, throw .png on the end, and store the filename QRegularExpression regex(QStringLiteral("favicons/(.*)")); QRegularExpressionMatch match = regex.match(bookmark.icon()); - qDebug() << "will save " << (match.captured(1)) ; + qCDebug(SWEEPER_LOG) << "will save " << (match.captured(1)) ; saveTheseFavicons << (match.captured(1)); } bookmark = konqiBookmarks.next(bookmark); @@ -229,7 +229,7 @@ for(const QString &entry: entries) { // ...if we're not supposed to save them, of course if (!saveTheseFavicons.contains(entry)) { - qDebug() << "removing " << entry ; + qCDebug(SWEEPER_LOG) << "removing " << entry ; if(!favIconDir.remove(entry)) { errMsg = i18n("A favicon could not be removed."); return false; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sweeper-20.12.3/sweeper.cpp new/sweeper-21.04.0/sweeper.cpp --- old/sweeper-20.12.3/sweeper.cpp 2021-02-25 00:18:59.000000000 +0100 +++ new/sweeper-21.04.0/sweeper.cpp 2021-04-14 17:13:34.000000000 +0200 @@ -31,8 +31,8 @@ Sweeper::Sweeper(bool automatic) : KXmlGuiWindow(nullptr) - , generalCLI(new QTreeWidgetItem(QStringList(i18nc("General system content", "General")))) - , webbrowsingCLI(new QTreeWidgetItem(QStringList(i18nc("Web browsing content", "Web Browsing")))) + , m_generalCLI(new QTreeWidgetItem(QStringList(i18nc("General system content", "General")))) + , m_webbrowsingCLI(new QTreeWidgetItem(QStringList(i18nc("Web browsing content", "Web Browsing")))) , m_privacyConfGroup(KSharedConfig::openConfig(QStringLiteral("kprivacyrc"), KConfig::NoGlobals), "Cleaning") , m_automatic(automatic) { @@ -48,11 +48,11 @@ setAutoSaveSettings(); - sw->addTopLevelItem(generalCLI); - sw->addTopLevelItem(webbrowsingCLI); + sw->addTopLevelItem(m_generalCLI); + sw->addTopLevelItem(m_webbrowsingCLI); - generalCLI->setExpanded(true); - webbrowsingCLI->setExpanded(true); + m_generalCLI->setExpanded(true); + m_webbrowsingCLI->setExpanded(true); this->InitActions(); @@ -139,21 +139,21 @@ void Sweeper::InitActions() { // store all entries in a list for easy access later on if (QDBusConnection::sessionBus().interface()->isServiceRegistered(QStringLiteral("org.kde.klipper"))) { - checklist.append(new ClearSavedClipboardContentsAction(generalCLI)); + checklist.append(new ClearSavedClipboardContentsAction(m_generalCLI)); } - checklist.append(new ClearRecentDocumentsAction(generalCLI)); - checklist.append(new ClearRunCommandHistoryAction(generalCLI)); + checklist.append(new ClearRecentDocumentsAction(m_generalCLI)); + checklist.append(new ClearRunCommandHistoryAction(m_generalCLI)); if (QDBusConnection::sessionBus().interface()->isServiceRegistered(QStringLiteral("org.kde.ActivityManager"))) { - checklist.append( new ClearRecentApplicationAction( generalCLI ) ); + checklist.append( new ClearRecentApplicationAction( m_generalCLI ) ); } - checklist.append(new ClearThumbnailsAction(generalCLI)); + checklist.append(new ClearThumbnailsAction(m_generalCLI)); - checklist.append(new ClearAllCookiesAction(webbrowsingCLI)); - checklist.append(new ClearFaviconsAction(webbrowsingCLI)); - checklist.append(new ClearWebHistoryAction(webbrowsingCLI)); - checklist.append(new ClearWebCacheAction(webbrowsingCLI)); - checklist.append(new ClearFormCompletionAction(webbrowsingCLI)); - checklist.append(new ClearAllCookiesPoliciesAction(webbrowsingCLI)); + checklist.append(new ClearAllCookiesAction(m_webbrowsingCLI)); + checklist.append(new ClearFaviconsAction(m_webbrowsingCLI)); + checklist.append(new ClearWebHistoryAction(m_webbrowsingCLI)); + checklist.append(new ClearWebCacheAction(m_webbrowsingCLI)); + checklist.append(new ClearFormCompletionAction(m_webbrowsingCLI)); + checklist.append(new ClearAllCookiesPoliciesAction(m_webbrowsingCLI)); ui.privacyListView->resizeColumnToContents(0); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sweeper-20.12.3/sweeper.h new/sweeper-21.04.0/sweeper.h --- old/sweeper-20.12.3/sweeper.h 2021-02-25 00:18:59.000000000 +0100 +++ new/sweeper-21.04.0/sweeper.h 2021-04-14 17:13:34.000000000 +0200 @@ -60,8 +60,8 @@ QVector<PrivacyAction*> checklist; - QTreeWidgetItem * const generalCLI; - QTreeWidgetItem * const webbrowsingCLI; + QTreeWidgetItem * const m_generalCLI; + QTreeWidgetItem * const m_webbrowsingCLI; KConfigGroup m_privacyConfGroup;