Ignore:
Timestamp:
1999-01-22T10:20:15+13:00 (25 years ago)
Author:
sjboddie
Message:

removed unused collection parameter from several functions

Location:
trunk/gsdl/src/colservr
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/colservr/gdbmclass.cpp

    r114 r124  
    1212/*
    1313   $Log$
     14   Revision 1.4  1999/01/21 21:20:08  sjboddie
     15   removed unused collection parameter from several functions
     16
    1417   Revision 1.3  1999/01/19 01:38:15  rjmcnab
    1518
     
    357360// book from the gdbm
    358361// if booksection doesn't exist it remains blank
    359 void seperate_parts(const text_t &targetdoc, gdbmclass &gdbm, const text_t &collection,
     362void separate_parts(const text_t &targetdoc, gdbmclass &gdbm,
    360363            text_t &classification, text_t &booksection) {
    361364 
     
    450453// classification or booksection
    451454void get_siblings (const text_t &classification, const text_t &booksection,
    452            gdbmclass &gdbm, const text_t &collection,
    453            vector<text_t> &siblings) {
     455           gdbmclass &gdbm, vector<text_t> &siblings) {
    454456 
    455457  gdbm_info info;
  • trunk/gsdl/src/colservr/gdbmclass.h

    r112 r124  
    8282void remove_tags (text_t &text);
    8383
    84 void seperate_parts (const text_t &targetdoc, gdbmclass &gdbm, const text_t &collection,
     84void separate_parts (const text_t &targetdoc, gdbmclass &gdbm,
    8585             text_t &classification, text_t &booksection);
    8686void split_targetdoc (const text_t &targetdoc, text_t &classification,
     
    8989void get_parents (const text_t &targetdoc, vector<text_t> &parents);
    9090void get_siblings (const text_t &classification, const text_t &booksection,
    91            gdbmclass &gdbm, const text_t &collection,
    92            vector<text_t> &siblings);
     91           gdbmclass &gdbm, vector<text_t> &siblings);
    9392int are_same_chapter(text_t section1, text_t section2);
    9493void get_first_section(const text_t &instring, text_t &returnstring);
Note: See TracChangeset for help on using the changeset viewer.