diff options
| author | Michael Biebl <biebl@debian.org> | 2023-08-09 21:55:35 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2023-08-09 21:55:35 +0200 |
| commit | 05e4a733f2141995181a551854d5df929f084adf (patch) | |
| tree | 83bb937740a6667525ba0df046748ecaa829c269 /src/libnm-client-impl/nm-active-connection.c | |
| parent | 14b0f3a9dc9ea90d60a3b057350fd4d637dc021a (diff) | |
New upstream version 1.44.0 upstream/1.44.0
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, |