diff options
author | David Robillard <d@drobilla.net> | 2012-01-08 03:13:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-01-08 03:13:15 +0000 |
commit | a79fe5a88d0ef9f440fd6b8330a82fb67839fabd (patch) | |
tree | 239f3839a3ab40137b1a35e35abc06eb7d1b6aca /src/node.c | |
parent | 59b7cb60f0dcdd639ee4b130df9cbce3d7ebf04a (diff) | |
download | lilv-a79fe5a88d0ef9f440fd6b8330a82fb67839fabd.tar.gz lilv-a79fe5a88d0ef9f440fd6b8330a82fb67839fabd.tar.bz2 lilv-a79fe5a88d0ef9f440fd6b8330a82fb67839fabd.zip |
Add file support to state implementation.
Use cleaner and more consistent names for world URIs.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3918 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/node.c')
-rw-r--r-- | src/node.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -104,14 +104,14 @@ lilv_node_new_from_node(LilvWorld* world, const SordNode* node) case SORD_LITERAL: datatype_uri = sord_node_get_datatype(node); if (datatype_uri) { - if (sord_node_equals(datatype_uri, world->xsd_boolean_node)) + if (sord_node_equals(datatype_uri, world->uris.xsd_boolean)) type = LILV_VALUE_BOOL; - else if (sord_node_equals(datatype_uri, world->xsd_decimal_node) - || sord_node_equals(datatype_uri, world->xsd_double_node)) + else if (sord_node_equals(datatype_uri, world->uris.xsd_decimal) + || sord_node_equals(datatype_uri, world->uris.xsd_double)) type = LILV_VALUE_FLOAT; - else if (sord_node_equals(datatype_uri, world->xsd_integer_node)) + else if (sord_node_equals(datatype_uri, world->uris.xsd_integer)) type = LILV_VALUE_INT; - else if (sord_node_equals(datatype_uri, world->xsd_base64Binary_node)) + else if (sord_node_equals(datatype_uri, world->uris.xsd_base64Binary)) type = LILV_VALUE_BLOB; else LILV_ERRORF("Unknown datatype `%s'\n", |