diff --git a/rpm/lipstick-qt5.spec b/rpm/lipstick-qt5.spec index 1b8ba981..54bb1a4d 100644 --- a/rpm/lipstick-qt5.spec +++ b/rpm/lipstick-qt5.spec @@ -5,7 +5,7 @@ Name: lipstick-qt5 %define icondirectory %{_datadir}/icons/hicolor/86x86/apps Summary: QML toolkit for homescreen creation -Version: 0.33.1 +Version: 0.34.7 Release: 1 Group: System/Libraries License: LGPLv2.1 @@ -45,7 +45,7 @@ BuildRequires: qt5-qtgui-devel >= 5.2.1+git24 BuildRequires: qt5-qtwayland-wayland_egl-devel >= 5.4.0+git26 BuildRequires: doxygen BuildRequires: qt5-qttools-qthelp-devel -Conflicts: meegotouch-systemui < 1.5.7 +BuildRequires: nemo-qml-plugin-systemsettings >= 0.5.27 Obsoletes: libnotificationsystem0 Obsoletes: %{name}-screenshot diff --git a/src/vpnagent.cpp b/src/vpnagent.cpp index 9002a33e..906b4df8 100644 --- a/src/vpnagent.cpp +++ b/src/vpnagent.cpp @@ -1,7 +1,7 @@ /*************************************************************************** ** -** Copyright (C) 2016 - 2019 Jolla Ltd. -** Copyright (C) 2019 Open Mobile Platform LLC. +** Copyright (c) 2016 - 2019 Jolla Ltd. +** Copyright (c) 2019 Open Mobile Platform LLC. ** ** This file is part of lipstick. ** @@ -29,7 +29,7 @@ VpnAgent::VpnAgent(QObject *parent) : QObject(parent), m_window(0), - m_connections(new VpnModel(this)) + m_connections(new SettingsVpnModel(this)) { QTimer::singleShot(0, this, SLOT(createWindow())); } diff --git a/src/vpnagent.h b/src/vpnagent.h index 0b468dd7..f3fb0aa9 100644 --- a/src/vpnagent.h +++ b/src/vpnagent.h @@ -1,7 +1,7 @@ /*************************************************************************** ** -** Copyright (C) 2016 Jolla Ltd. -** Contact: Matt Vogt +** Copyright (c) 2016 - 2019 Jolla Ltd. +** Copyright (c) 2019 Open Mobile Platform LLC. ** ** This file is part of lipstick. ** @@ -22,7 +22,7 @@ #include #include -#include "vpnmodel.h" +#include "settingsvpnmodel.h" #include "lipstickglobal.h" @@ -86,7 +86,7 @@ private slots: private: HomeWindow *m_window; - VpnModel *m_connections; + SettingsVpnModel *m_connections; struct Request { Request(const QString &path, const QVariantMap &details, const QDBusMessage &request);