From 459052ebbc27e93285c11de71eb2d26810e932d3 Mon Sep 17 00:00:00 2001 From: methodus Date: Wed, 31 Oct 2012 11:21:23 +0100 Subject: Fixed sortCriteria. The column names were set wrongly. --- common/parser.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'common') 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 { //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; -- cgit v1.2.3