Ignore:
Timestamp:
1999-08-25T16:43:06+12:00 (25 years ago)
Author:
sjboddie
Message:

made FilterRequest_t::docSet an array rather than a set

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/receptionist.cpp

    r463 r468  
    1212/*
    1313   $Log$
     14   Revision 1.26  1999/08/25 04:43:06  sjboddie
     15   made FilterRequest_t::docSet an array rather than a set
     16
    1417   Revision 1.25  1999/08/20 00:59:01  sjboddie
    1518   -fixed up location redirection
     
    809812  request.filterResultOptions = FROID;
    810813  if ((!arg_d.empty()) && (needs_translating (arg_d) || !DocumentTopPages)) {
    811     request.docSet.insert (arg_d);
     814    request.docSet.push_back (arg_d);
    812815    request.fields.push_back ("classifytype");
    813816    request.filterResultOptions = FRmetadata;
     
    826829  if (needs_translating (arg_cl)) {
    827830    request.fields.push_back("doctype");
    828     request.docSet.insert (arg_cl);
     831    request.docSet.push_back (arg_cl);
    829832    request.filterResultOptions = FRmetadata;
    830833    collectproto->filter (collection, request, response, err, logout);
     
    837840
    838841  if (needs_translating (arg_hp)) {
    839     request.docSet.insert (arg_hp);
     842    request.docSet.push_back (arg_hp);
    840843    collectproto->filter (collection, request, response, err, logout);
    841844    arg_hp = response.docInfo[0].OID;
Note: See TracChangeset for help on using the changeset viewer.