~unity-api-team/indicator-network/fix-coverage

« back to all changes in this revision

Viewing changes to src/connectivity-api/connectivity-qt/connectivityqt/vpn-connections-list-model.cpp

  • Committer: Antti Kaijanmäki
  • Date: 2016-10-29 20:09:30 UTC
  • Revision ID: antti.kaijanmaki@canonical.com-20161029200930-u1ij1wbb4l8s1jwi
blah blah

Show diffs side-by-side

added added

removed removed

Lines of Context:
220
220
 
221
221
    shared_ptr<ComUbuntuConnectivity1PrivateInterface> m_writeInterface;
222
222
 
223
 
    DBusPropertyCache::SPtr m_propertyCache;
 
223
    util::DBusPropertyCache::SPtr m_propertyCache;
224
224
 
225
225
    QList<VpnConnection::SPtr> m_vpnConnections;
226
226
};
232
232
    d->m_writeInterface = parameters.writeInterface;
233
233
    d->m_propertyCache = parameters.propertyCache;
234
234
    d->updatePaths(d->m_propertyCache->get("VpnConnections"));
235
 
    connect(d->m_propertyCache.get(), &DBusPropertyCache::propertyChanged, d.get(), &Priv::propertyChanged);
 
235
    connect(d->m_propertyCache.get(), &util::DBusPropertyCache::propertyChanged, d.get(), &Priv::propertyChanged);
236
236
}
237
237
 
238
238
VpnConnectionsListModel::~VpnConnectionsListModel()