Changeset 9590
- Timestamp:
- 05/02/06 13:09:40 (3 years ago)
- Files:
-
- trunk/src/core/midgard/src/mgdschema.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/core/midgard/src/mgdschema.c
r9462 r9590 395 395 xmlChar *tmpattr = xmlGetProp (node, "name"); 396 396 type_attr->property_up = g_strdup(tmpattr); 397 type_attr->query->upfield = g_strdup(attrval); 397 398 xmlFree(tmpattr); 398 399 } else { … … 412 413 xmlChar *tmpattr = xmlGetProp (node, "name"); 413 414 type_attr->property_parent = g_strdup(tmpattr); 415 type_attr->query->parentfield = g_strdup(attrval); 414 416 xmlFree(tmpattr); 415 417 } else { 416 418 g_warning("parentfield redefined!"); 417 419 } 418 prop_attr->parentfield = g_strdup(attrval); 420 prop_attr->parentfield = g_strdup(attrval); 419 421 } 420 422
