Skip to content

Commit

Permalink
Minor coding style fixes for VPN classes
Browse files Browse the repository at this point in the history
  • Loading branch information
rainemak committed Nov 27, 2019
1 parent 16ca1f9 commit bf54dfc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions libconnman-qt/vpnmodel.h
Expand Up @@ -58,7 +58,7 @@ class VpnModel : public QAbstractListModel
VpnRole = Qt::UserRole + 1
};

explicit VpnModel(QObject* parent = nullptr);
explicit VpnModel(QObject *parent = nullptr);
explicit VpnModel(VpnModelPrivate &dd, QObject *parent);
~VpnModel() Q_DECL_OVERRIDE;

Expand All @@ -67,7 +67,7 @@ class VpnModel : public QAbstractListModel
QModelIndex index(int row, int column, const QModelIndex &parent) const Q_DECL_OVERRIDE;
int count() const;
bool isConnected() const;
VpnManager * vpnManager() const;
VpnManager *vpnManager() const;
bool populated() const;
Q_INVOKABLE QVariantMap connectionSettings(const QString &path) const;

Expand Down
2 changes: 1 addition & 1 deletion libconnman-qt/vpnmodel_p.h
Expand Up @@ -44,7 +44,7 @@ class VpnModelPrivate
void init();

public:
VpnManager * m_manager;
VpnManager *m_manager;
QVector<VpnConnection*> m_connections;
static const QHash<int, QByteArray> m_roles;

Expand Down

0 comments on commit bf54dfc

Please sign in to comment.