diff options
| author | Michael Biebl <biebl@debian.org> | 2023-08-09 21:56:59 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2023-08-09 21:56:59 +0200 |
| commit | b1206f287e4fae1f9a7e29ec0dc11b54d726a7f8 (patch) | |
| tree | cc1d62cd21f10b2375c76484b5e2187f1e75f010 /src/libnm-client-impl/nm-active-connection.c | |
| parent | a6d4d07b23485507f30ddb1ce99f5c82428714c8 (diff) | |
| parent | 05e4a733f2141995181a551854d5df929f084adf (diff) | |
Update upstream source from tag 'upstream/1.44.0'
Update to upstream version '1.44.0' with Debian dir e69e19b54914190e7696747b3e0508f95977f387
Diffstat (limited to 'src/libnm-client-impl/nm-active-connection.c')
| -rw-r--r-- | src/libnm-client-impl/nm-active-connection.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/libnm-client-impl/nm-active-connection.c b/src/libnm-client-impl/nm-active-connection.c index ca6b18f9..6a138f3e 100644 --- a/src/libnm-client-impl/nm-active-connection.c +++ b/src/libnm-client-impl/nm-active-connection.c @@ -383,9 +383,9 @@ nm_active_connection_get_vpn(NMActiveConnection *connection) * * Gets the master #NMDevice of the connection. * - * This is replaced by nm_active_connection_get_controller() since 1.44 and 1.42.2. - * * Returns: (transfer none): the master #NMDevice of the #NMActiveConnection. + * + * Deprecated: 1.44: Use nm_active_connection_get_controller() instead. **/ NMDevice * nm_active_connection_get_master(NMActiveConnection *connection) @@ -402,7 +402,7 @@ nm_active_connection_get_master(NMActiveConnection *connection) * * Returns: (transfer none): the controller #NMDevice of the #NMActiveConnection. * - * Since: 1.44, 1.42.2 + * Since: 1.44 **/ NMDevice * nm_active_connection_get_controller(NMActiveConnection *connection) @@ -880,8 +880,9 @@ nm_active_connection_class_init(NMActiveConnectionClass *klass) /** * NMActiveConnection:master: * - * The master device if one exists. Replaced by the "controller" property - * since 1.44 and 1.42.2. + * The master device if one exists. Replaced by the "controller" property. + * + * Deprecated: 1.44 **/ obj_properties[PROP_MASTER] = g_param_spec_object(NM_ACTIVE_CONNECTION_MASTER, "", @@ -895,7 +896,7 @@ nm_active_connection_class_init(NMActiveConnectionClass *klass) * The controller device if one exists. This replaces the deprecated * "master" property. * - * Since: 1.44, 1.42.2 + * Since: 1.44 **/ obj_properties[PROP_CONTROLLER] = g_param_spec_object(NM_ACTIVE_CONNECTION_CONTROLLER, |