This commit is contained in:
rjc%netscape.com 1999-08-27 07:15:52 +00:00
Родитель e89b478bc7
Коммит 62b681879a
2 изменённых файлов: 16 добавлений и 0 удалений

Просмотреть файл

@ -58,6 +58,7 @@ function doSort(sortColName)
else sortDirection = "ascending";
}
/*
// get RDF Core service
var rdfCore = XPAppCoresManager.Find("RDFCore");
if (!rdfCore)
@ -71,5 +72,12 @@ function doSort(sortColName)
}
// sort!!!
rdfCore.doSort(node, sortResource, sortDirection);
*/
var isupports = Components.classes["component://netscape/rdf/xul-sort-service"].getService();
if (!isupports) return(false);
var xulSortService = isupports.QueryInterface(Components.interfaces.nsIXULSortService);
if (!xulSortService) return(false);
xulSortService.Sort(node, sortResource, sortDirection);
return(true);
}

Просмотреть файл

@ -58,6 +58,7 @@ function doSort(sortColName)
else sortDirection = "ascending";
}
/*
// get RDF Core service
var rdfCore = XPAppCoresManager.Find("RDFCore");
if (!rdfCore)
@ -71,5 +72,12 @@ function doSort(sortColName)
}
// sort!!!
rdfCore.doSort(node, sortResource, sortDirection);
*/
var isupports = Components.classes["component://netscape/rdf/xul-sort-service"].getService();
if (!isupports) return(false);
var xulSortService = isupports.QueryInterface(Components.interfaces.nsIXULSortService);
if (!xulSortService) return(false);
xulSortService.Sort(node, sortResource, sortDirection);
return(true);
}