[Libosinfo] [PATCHv4 04/11] Set id in osinfo_install_config_param_new

Christophe Fergeau cfergeau at redhat.com
Thu Dec 20 16:45:07 UTC 2012


OsinfoInstallConfigParam is an OsinfoEntity, but its _new method
does not set an id when creating it. This is needed if we want
to be able to use an OsinfoInstallConfigParamList. The "name"
argument that is passed at creation time is expected to be unique,
so we can use that as the entity id even though a full URI would have
been nicer.
---
 osinfo/osinfo_install_config_param.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/osinfo/osinfo_install_config_param.c b/osinfo/osinfo_install_config_param.c
index 59a0048..541f066 100644
--- a/osinfo/osinfo_install_config_param.c
+++ b/osinfo/osinfo_install_config_param.c
@@ -209,7 +209,10 @@ osinfo_install_config_param_init (OsinfoInstallConfigParam *config_param)
  */
 OsinfoInstallConfigParam *osinfo_install_config_param_new(const gchar *name)
 {
-    return g_object_new(OSINFO_TYPE_INSTALL_CONFIG_PARAM, "name", name, NULL);
+    return g_object_new(OSINFO_TYPE_INSTALL_CONFIG_PARAM,
+                        "id", name,
+                        "name", name,
+                        NULL);
 }
 
 /**
-- 
1.8.0.2




More information about the Libosinfo mailing list