Hello community, here is the log from the commit of package libKF5NetworkManagerQt for openSUSE:Factory checked in at 2018-01-22 16:09:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libKF5NetworkManagerQt (Old) and /work/SRC/openSUSE:Factory/.libKF5NetworkManagerQt.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libKF5NetworkManagerQt" Mon Jan 22 16:09:21 2018 rev:46 rq:567247 version:5.42.0 Changes: -------- --- /work/SRC/openSUSE:Factory/libKF5NetworkManagerQt/libKF5NetworkManagerQt.changes 2018-01-09 14:45:32.093346299 +0100 +++ /work/SRC/openSUSE:Factory/.libKF5NetworkManagerQt.new/libKF5NetworkManagerQt.changes 2018-01-22 16:09:22.315607168 +0100 @@ -1,0 +2,12 @@ +Tue Jan 16 22:50:21 CET 2018 - lbeltr...@kde.org + +- Update to 5.42.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.42.0.php +- Changes since 5.41.0: + * Remove not necessary virtual keyword + * 802-11-x: support for PWD EAP method + * it was split + +------------------------------------------------------------------- Old: ---- networkmanager-qt-5.41.0.tar.xz New: ---- networkmanager-qt-5.42.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libKF5NetworkManagerQt.spec ++++++ --- /var/tmp/diff_new_pack.8jLWQm/_old 2018-01-22 16:09:24.099523704 +0100 +++ /var/tmp/diff_new_pack.8jLWQm/_new 2018-01-22 16:09:24.103523518 +0100 @@ -1,7 +1,7 @@ # # spec file for package libKF5NetworkManagerQt # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,13 +17,13 @@ %define soversion 6 -%define _tar_path 5.41 +%define _tar_path 5.42 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} Name: libKF5NetworkManagerQt -Version: 5.41.0 +Version: 5.42.0 Release: 0 Summary: A Qt wrapper for NetworkManager DBus API License: LGPL-2.1 or LGPL-3.0 ++++++ networkmanager-qt-5.41.0.tar.xz -> networkmanager-qt-5.42.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/CMakeLists.txt new/networkmanager-qt-5.42.0/CMakeLists.txt --- old/networkmanager-qt-5.41.0/CMakeLists.txt 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/CMakeLists.txt 2018-01-06 00:42:37.000000000 +0100 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.41.0") # handled by release scripts +set(KF5_VERSION "5.42.0") # handled by release scripts project(NetworkManagerQt VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.41.0 NO_MODULE) +find_package(ECM 5.42.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) @@ -90,6 +90,4 @@ DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel ) -if ("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}") - feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) -endif() +feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/adsldevice.h new/networkmanager-qt-5.42.0/src/adsldevice.h --- old/networkmanager-qt-5.41.0/src/adsldevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/adsldevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -42,7 +42,7 @@ explicit AdslDevice(const QString &path, QObject *parent = nullptr); virtual ~AdslDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * Indicates whether the physical carrier is found */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/adsldevice_p.h new/networkmanager-qt-5.42.0/src/adsldevice_p.h --- old/networkmanager-qt-5.41.0/src/adsldevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/adsldevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -46,7 +46,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/bluetoothdevice.h new/networkmanager-qt-5.42.0/src/bluetoothdevice.h --- old/networkmanager-qt-5.41.0/src/bluetoothdevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/bluetoothdevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -85,7 +85,7 @@ * * @return the NetworkManager::Device::Type. This always returns NetworkManager::Device::Bluetooth */ - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; Q_SIGNALS: /** diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/bluetoothdevice_p.h new/networkmanager-qt-5.42.0/src/bluetoothdevice_p.h --- old/networkmanager-qt-5.41.0/src/bluetoothdevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/bluetoothdevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -42,7 +42,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/bonddevice.h new/networkmanager-qt-5.42.0/src/bonddevice.h --- old/networkmanager-qt-5.41.0/src/bonddevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/bonddevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -45,7 +45,7 @@ explicit BondDevice(const QString &path, QObject *parent = nullptr); virtual ~BondDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * Indicates whether the physical carrier is found diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/bonddevice_p.h new/networkmanager-qt-5.42.0/src/bonddevice_p.h --- old/networkmanager-qt-5.41.0/src/bonddevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/bonddevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -45,7 +45,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } #endif // NETWORKMANAGERQT__BLUETOOTH_DEVICE_P_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/bridgedevice.h new/networkmanager-qt-5.42.0/src/bridgedevice.h --- old/networkmanager-qt-5.41.0/src/bridgedevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/bridgedevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -45,7 +45,7 @@ explicit BridgeDevice(const QString &path, QObject *parent = nullptr); virtual ~BridgeDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * Indicates whether the physical carrier is found diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/bridgedevice_p.h new/networkmanager-qt-5.42.0/src/bridgedevice_p.h --- old/networkmanager-qt-5.41.0/src/bridgedevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/bridgedevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -46,7 +46,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/genericdevice.h new/networkmanager-qt-5.42.0/src/genericdevice.h --- old/networkmanager-qt-5.41.0/src/genericdevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/genericdevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -47,7 +47,7 @@ /** * Return the type */ - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * Active hardware address of the device */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/genericdevice_p.h new/networkmanager-qt-5.42.0/src/genericdevice_p.h --- old/networkmanager-qt-5.41.0/src/genericdevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/genericdevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -46,7 +46,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/gredevice.h new/networkmanager-qt-5.42.0/src/gredevice.h --- old/networkmanager-qt-5.41.0/src/gredevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/gredevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -54,7 +54,7 @@ explicit GreDevice(const QString &path, QObject *parent = nullptr); virtual ~GreDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; ushort inputFlags() const; ushort outputFlags() const; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/gredevice_p.h new/networkmanager-qt-5.42.0/src/gredevice_p.h --- old/networkmanager-qt-5.41.0/src/gredevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/gredevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -56,7 +56,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/infinibanddevice.h new/networkmanager-qt-5.42.0/src/infinibanddevice.h --- old/networkmanager-qt-5.41.0/src/infinibanddevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/infinibanddevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -44,7 +44,7 @@ explicit InfinibandDevice(const QString &path, QObject *parent = nullptr); virtual ~InfinibandDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * Indicates whether the physical carrier is found diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/infinibanddevice_p.h new/networkmanager-qt-5.42.0/src/infinibanddevice_p.h --- old/networkmanager-qt-5.41.0/src/infinibanddevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/infinibanddevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -46,7 +46,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/iptunneldevice.h new/networkmanager-qt-5.42.0/src/iptunneldevice.h --- old/networkmanager-qt-5.41.0/src/iptunneldevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/iptunneldevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -53,7 +53,7 @@ explicit IpTunnelDevice(const QString &path, QObject *parent = nullptr); virtual ~IpTunnelDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * How many additional levels of encapsulation are permitted to be prepended to packets. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/iptunneldevice_p.h new/networkmanager-qt-5.42.0/src/iptunneldevice_p.h --- old/networkmanager-qt-5.41.0/src/iptunneldevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/iptunneldevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -57,7 +57,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/macvlandevice.h new/networkmanager-qt-5.42.0/src/macvlandevice.h --- old/networkmanager-qt-5.41.0/src/macvlandevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/macvlandevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -45,7 +45,7 @@ explicit MacVlanDevice(const QString &path, QObject *parent = nullptr); virtual ~MacVlanDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; QString mode() const; bool noPromisc() const; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/macvlandevice_p.h new/networkmanager-qt-5.42.0/src/macvlandevice_p.h --- old/networkmanager-qt-5.41.0/src/macvlandevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/macvlandevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -47,7 +47,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/modemdevice.h new/networkmanager-qt-5.42.0/src/modemdevice.h --- old/networkmanager-qt-5.41.0/src/modemdevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/modemdevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -49,7 +49,7 @@ /** * Return the type */ - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * The generic family of access technologies the modem supports. Not all capabilities are * available at the same time however; some modems require a firmware reload or other diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/modemdevice_p.h new/networkmanager-qt-5.42.0/src/modemdevice_p.h --- old/networkmanager-qt-5.41.0/src/modemdevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/modemdevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -45,7 +45,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } // namespace NetworkManager diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/olpcmeshdevice.h new/networkmanager-qt-5.42.0/src/olpcmeshdevice.h --- old/networkmanager-qt-5.41.0/src/olpcmeshdevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/olpcmeshdevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -56,7 +56,7 @@ /** * Return the type */ - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * Currently active channel. */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/olpcmeshdevice_p.h new/networkmanager-qt-5.42.0/src/olpcmeshdevice_p.h --- old/networkmanager-qt-5.41.0/src/olpcmeshdevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/olpcmeshdevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -43,7 +43,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/settings/security8021xsetting.cpp new/networkmanager-qt-5.42.0/src/settings/security8021xsetting.cpp --- old/networkmanager-qt-5.41.0/src/settings/security8021xsetting.cpp 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/settings/security8021xsetting.cpp 2018-01-06 00:42:37.000000000 +0100 @@ -569,7 +569,8 @@ !privateKeyPasswordFlags().testFlag(NotRequired)) { secrets << QLatin1String(NM_SETTING_802_1X_PRIVATE_KEY_PASSWORD); } else if ((eapMethods().contains(EapMethodTtls) || eapMethods().contains(EapMethodPeap) || - eapMethods().contains(EapMethodLeap) || eapMethods().contains(EapMethodFast)) && + eapMethods().contains(EapMethodLeap) || eapMethods().contains(EapMethodFast) || + eapMethods().contains(EapMethodPwd)) && (password().isEmpty() || requestNew) && !passwordFlags().testFlag(NotRequired)) { secrets << QLatin1String(NM_SETTING_802_1X_PASSWORD); secrets << QLatin1String(NM_SETTING_802_1X_PASSWORD_RAW); @@ -655,6 +656,8 @@ eapMethods << EapMethodSim; } else if (method == "fast") { eapMethods << EapMethodFast; + } else if (method == "pwd") { + eapMethods << EapMethodPwd; } } @@ -862,6 +865,8 @@ methods << "sim"; } else if (method == EapMethodFast) { methods << "fast"; + } else if (method == EapMethodPwd) { + methods << "pwd"; } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/settings/security8021xsetting.h new/networkmanager-qt-5.42.0/src/settings/security8021xsetting.h --- old/networkmanager-qt-5.41.0/src/settings/security8021xsetting.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/settings/security8021xsetting.h 2018-01-06 00:42:37.000000000 +0100 @@ -37,7 +37,7 @@ public: typedef QSharedPointer<Security8021xSetting> Ptr; typedef QList<Ptr> List; - enum EapMethod {EapMethodUnknown = 0, EapMethodLeap, EapMethodMd5, EapMethodTls, EapMethodPeap, EapMethodTtls, EapMethodSim, EapMethodFast}; + enum EapMethod {EapMethodUnknown = 0, EapMethodLeap, EapMethodMd5, EapMethodTls, EapMethodPeap, EapMethodTtls, EapMethodSim, EapMethodFast, EapMethodPwd}; enum PeapVersion {PeapVersionUnknown = -1, PeapVersionZero, PeapVersionOne}; enum PeapLabel {PeapLabelUnknown = 0, PeapLabelForce}; enum FastProvisioning {FastProvisioningUnknown = -1, FastProvisioningDisabled, FastProvisioningAllowUnauthenticated, FastProvisioningAllowAuthenticated, FastProvisioningAllowBoth}; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/teamdevice.h new/networkmanager-qt-5.42.0/src/teamdevice.h --- old/networkmanager-qt-5.41.0/src/teamdevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/teamdevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -47,7 +47,7 @@ explicit TeamDevice(const QString &path, QObject *parent = nullptr); virtual ~TeamDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * Indicates whether the physical carrier is found diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/teamdevice_p.h new/networkmanager-qt-5.42.0/src/teamdevice_p.h --- old/networkmanager-qt-5.41.0/src/teamdevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/teamdevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -50,7 +50,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/tundevice.h new/networkmanager-qt-5.42.0/src/tundevice.h --- old/networkmanager-qt-5.41.0/src/tundevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/tundevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -50,7 +50,7 @@ explicit TunDevice(const QString &path, QObject *parent = nullptr); virtual ~TunDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * The uid of the tunnel owner, or -1 if it has no owner. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/tundevice_p.h new/networkmanager-qt-5.42.0/src/tundevice_p.h --- old/networkmanager-qt-5.41.0/src/tundevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/tundevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -50,7 +50,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/vethdevice.h new/networkmanager-qt-5.42.0/src/vethdevice.h --- old/networkmanager-qt-5.41.0/src/vethdevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/vethdevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -45,7 +45,7 @@ explicit VethDevice(const QString &path, QObject *parent = nullptr); virtual ~VethDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; QString peer() const; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/vethdevice_p.h new/networkmanager-qt-5.42.0/src/vethdevice_p.h --- old/networkmanager-qt-5.41.0/src/vethdevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/vethdevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -45,7 +45,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/vlandevice.h new/networkmanager-qt-5.42.0/src/vlandevice.h --- old/networkmanager-qt-5.41.0/src/vlandevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/vlandevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -47,7 +47,7 @@ explicit VlanDevice(const QString &path, QObject *parent = nullptr); virtual ~VlanDevice(); - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * Indicates whether the physical carrier is found diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/vlandevice_p.h new/networkmanager-qt-5.42.0/src/vlandevice_p.h --- old/networkmanager-qt-5.41.0/src/vlandevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/vlandevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -48,7 +48,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/vpnconnection_p.h new/networkmanager-qt-5.42.0/src/vpnconnection_p.h --- old/networkmanager-qt-5.41.0/src/vpnconnection_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/vpnconnection_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -52,7 +52,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; private Q_SLOTS: void dbusPropertiesChanged(const QString &interfaceName, const QVariantMap &properties, const QStringList &invalidatedProperties); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/wimaxdevice.h new/networkmanager-qt-5.42.0/src/wimaxdevice.h --- old/networkmanager-qt-5.41.0/src/wimaxdevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/wimaxdevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -59,7 +59,7 @@ /** * Return the type */ - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * List of network service providers currently visible to the hardware */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/wimaxdevice_p.h new/networkmanager-qt-5.42.0/src/wimaxdevice_p.h --- old/networkmanager-qt-5.41.0/src/wimaxdevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/wimaxdevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -52,7 +52,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/wireddevice.h new/networkmanager-qt-5.42.0/src/wireddevice.h --- old/networkmanager-qt-5.41.0/src/wireddevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/wireddevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -52,7 +52,7 @@ /** * Return the type */ - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * Active hardware address of the device */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/wireddevice_p.h new/networkmanager-qt-5.42.0/src/wireddevice_p.h --- old/networkmanager-qt-5.41.0/src/wireddevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/wireddevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -46,7 +46,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; }; } // namespace NetworkManager diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/wirelessdevice.h new/networkmanager-qt-5.42.0/src/wirelessdevice.h --- old/networkmanager-qt-5.41.0/src/wirelessdevice.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/wirelessdevice.h 2018-01-06 00:42:37.000000000 +0100 @@ -91,7 +91,7 @@ /** * Return the type */ - virtual Type type() const Q_DECL_OVERRIDE; + Type type() const Q_DECL_OVERRIDE; /** * List of wireless networks currently visible to the hardware */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/networkmanager-qt-5.41.0/src/wirelessdevice_p.h new/networkmanager-qt-5.42.0/src/wirelessdevice_p.h --- old/networkmanager-qt-5.41.0/src/wirelessdevice_p.h 2017-12-02 11:21:47.000000000 +0100 +++ new/networkmanager-qt-5.42.0/src/wirelessdevice_p.h 2018-01-06 00:42:37.000000000 +0100 @@ -50,7 +50,7 @@ * When subclassing make sure to call the parent class method * if the property was not useful to your new class */ - virtual void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; + void propertyChanged(const QString &property, const QVariant &value) Q_DECL_OVERRIDE; protected Q_SLOTS: void accessPointAdded(const QDBusObjectPath &);