Skip to content

Commit

Permalink
Merge branch 'jb45378' into 'master'
Browse files Browse the repository at this point in the history
Rename VpnModel class to SettingsVpnModel

See merge request mer-core/lipstick!123
  • Loading branch information
llewelld committed Oct 9, 2019
2 parents c684fdc + 34f0f3b commit 39e1be8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions rpm/lipstick-qt5.spec
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions 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.
**
Expand Down Expand Up @@ -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()));
}
Expand Down
8 changes: 4 additions & 4 deletions src/vpnagent.h
@@ -1,7 +1,7 @@
/***************************************************************************
**
** Copyright (C) 2016 Jolla Ltd.
** Contact: Matt Vogt <matthew.vogt@jollamobile.com>
** Copyright (c) 2016 - 2019 Jolla Ltd.
** Copyright (c) 2019 Open Mobile Platform LLC.
**
** This file is part of lipstick.
**
Expand All @@ -22,7 +22,7 @@
#include <QDBusObjectPath>
#include <QList>

#include "vpnmodel.h"
#include "settingsvpnmodel.h"

#include "lipstickglobal.h"

Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 39e1be8

Please sign in to comment.