2005-07-24 Ray Strode <rstrode@redhat.com>

* src/nm-netlink-monitor.c (nm_netlink_monitor_new):
	remove unneeded NULL arg from g_object_new().  Any
	warnings caused by not having the extra NULL are just a
	result of a bug in glib 2.7.0 - 2.7.2.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@809 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Ray Strode
2005-07-25 03:36:55 +00:00
parent c898bfc0d0
commit 78546efeef
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
2005-07-24 Ray Strode <rstrode@redhat.com>
* src/nm-netlink-monitor.c (nm_netlink_monitor_new):
remove unneeded NULL arg from g_object_new(). Any
warnings caused by not having the extra NULL are just a
result of a bug in glib 2.7.0 - 2.7.2.
2005-07-22 Robert Love <rml@novell.com>
* gnome/libnm_glib/libnm_glib.c: support D-BUS version 0.35, too

View File

@@ -263,7 +263,7 @@ nm_netlink_monitor_new (void)
{
GObject *instance;
instance = g_object_new (NM_TYPE_NETLINK_MONITOR, NULL, NULL);
instance = g_object_new (NM_TYPE_NETLINK_MONITOR, NULL);
return NM_NETLINK_MONITOR (instance);
}
@@ -274,7 +274,6 @@ nm_netlink_monitor_clear_event_source (NmNetlinkMonitor *monitor)
monitor->priv->event_source = NULL;
}
void
nm_netlink_monitor_attach (NmNetlinkMonitor *monitor,
GMainContext *context)