summaryrefslogtreecommitdiff
path: root/src/devices/nm-device-vlan.c
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-01-10 15:18:31 +0100
committerThomas Haller <thaller@redhat.com>2016-01-11 14:05:49 +0100
commitec3613f27c30bfbd0cf1f2c55b1afd5b520dc7de (patch)
treeeeb525808a9602455fc9063e1c29c08fb76d5ae8 /src/devices/nm-device-vlan.c
parent2550850f54164c46f746a6f3a768e29f09961b10 (diff)
downloadNetworkManager-ec3613f27c30bfbd0cf1f2c55b1afd5b520dc7de.tar.gz
device/trivial: rename virtual function NMDevice:unrealize() to unrealize_notify()
Diffstat (limited to 'src/devices/nm-device-vlan.c')
-rw-r--r--src/devices/nm-device-vlan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/nm-device-vlan.c b/src/devices/nm-device-vlan.c
index 27112c5a14..6118a5a1fc 100644
--- a/src/devices/nm-device-vlan.c
+++ b/src/devices/nm-device-vlan.c
@@ -251,9 +251,9 @@ create_and_realize (NMDevice *device,
}
static void
-unrealize (NMDevice *device, gboolean remove_resources)
+unrealize_notify (NMDevice *device, gboolean remove_resources)
{
- NM_DEVICE_CLASS (nm_device_vlan_parent_class)->unrealize (device, remove_resources);
+ NM_DEVICE_CLASS (nm_device_vlan_parent_class)->unrealize_notify (device, remove_resources);
NM_DEVICE_VLAN_GET_PRIVATE (device)->vlan_id = 0;
g_object_notify (G_OBJECT (device), NM_DEVICE_VLAN_ID);
@@ -681,7 +681,7 @@ nm_device_vlan_class_init (NMDeviceVlanClass *klass)
parent_class->create_and_realize = create_and_realize;
parent_class->realize_start_notify = realize_start_notify;
- parent_class->unrealize = unrealize;
+ parent_class->unrealize_notify = unrealize_notify;
parent_class->get_generic_capabilities = get_generic_capabilities;
parent_class->bring_up = bring_up;
parent_class->act_stage1_prepare = act_stage1_prepare;