diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/parser.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/common/parser.cpp b/common/parser.cpp index 8c2533a..6c0831b 100644 --- a/common/parser.cpp +++ b/common/parser.cpp @@ -37,14 +37,14 @@ struct cProperties : sp::symbols<const char*> { //struct cProperties : symbols<> { cProperties(){ add - (property::object::KEY_TITLE, "title") - (property::object::KEY_CREATOR, "creator") - (property::object::KEY_DESCRIPTION, "description") - (property::object::KEY_LONG_DESCRIPTION, "longDescription") - (property::object::KEY_CLASS, "class") - (property::object::KEY_DATE, "date") - (property::object::KEY_LANGUAGE, "language") - (property::resource::KEY_PROTOCOL_INFO, "protocolInfo") + (property::object::KEY_TITLE, property::object::KEY_TITLE) + (property::object::KEY_CREATOR, property::object::KEY_CREATOR) + (property::object::KEY_DESCRIPTION, property::object::KEY_DESCRIPTION) + (property::object::KEY_LONG_DESCRIPTION, property::object::KEY_LONG_DESCRIPTION) + (property::object::KEY_CLASS, property::object::KEY_CLASS) + (property::object::KEY_DATE, property::object::KEY_DATE) + (property::object::KEY_LANGUAGE, property::object::KEY_LANGUAGE) + (property::resource::KEY_PROTOCOL_INFO, property::resource::KEY_PROTOCOL_INFO) ; } } Properties; |