From c6791973f394379731df0d68d85cd75ca7bb4d12 Mon Sep 17 00:00:00 2001 From: Vinicius Costa Gomes Date: Fri, 18 Jun 2010 16:07:06 -0300 Subject: [PATCH] obexd: Fix order of contacts in the combined calls folder --- obexd/plugins/phonebook-tracker.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/obexd/plugins/phonebook-tracker.c b/obexd/plugins/phonebook-tracker.c index 2c737470f..89c612ed6 100644 --- a/obexd/plugins/phonebook-tracker.c +++ b/obexd/plugins/phonebook-tracker.c @@ -218,7 +218,7 @@ "?c nco:hasAffiliation ?a . " \ "?a nco:hasPhoneNumber ?w . " \ "} " \ - "} } " + "} } ORDER BY DESC(nmo:receivedDate(?call))" #define COMBINED_CALLS_LIST \ "SELECT ?c nco:nameFamily(?c) nco:nameGiven(?c) " \ @@ -237,7 +237,7 @@ "nmo:isSent false . " \ "?c a nco:Contact . " \ "OPTIONAL { ?c nco:hasPhoneNumber ?h . } " \ - "} } " + "} } ORDER BY DESC(nmo:receivedDate(?call))" #define CONTACTS_QUERY_FROM_URI \ -- 2.47.3