mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-04-20 23:30:41 +02:00
platform: implement dispose() in NMLinuxPlatform
This commit is contained in:
parent
c34598fa23
commit
304abc909a
1 changed files with 7 additions and 0 deletions
|
|
@ -4665,6 +4665,12 @@ constructed (GObject *_object)
|
|||
G_OBJECT_CLASS (nm_linux_platform_parent_class)->constructed (_object);
|
||||
}
|
||||
|
||||
static void
|
||||
dispose (GObject *object)
|
||||
{
|
||||
G_OBJECT_CLASS (nm_linux_platform_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
nm_linux_platform_finalize (GObject *object)
|
||||
{
|
||||
|
|
@ -4698,6 +4704,7 @@ nm_linux_platform_class_init (NMLinuxPlatformClass *klass)
|
|||
|
||||
/* virtual methods */
|
||||
object_class->constructed = constructed;
|
||||
object_class->dispose = dispose;
|
||||
object_class->finalize = nm_linux_platform_finalize;
|
||||
|
||||
platform_class->sysctl_set = sysctl_set;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue