/[ghosts]/ghosts/gedcomviewer/src/BakeryGateway/ViewIndividualRecord.cpp
ViewVC logotype

Diff of /ghosts/gedcomviewer/src/BakeryGateway/ViewIndividualRecord.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by cpcp, Tue Oct 1 15:08:30 2002 UTC revision 1.2 by cpcp, Tue Nov 12 21:25:22 2002 UTC
# Line 1  Line 1 
1    /**
2        Copyright 2002 Cyril Picard
3    
4        This file is part of the GEDCOMViewer tool
5        (developed within the Genealogy Free Software Tools project).
6    
7        The GEDCOMViewer tool is free software; you can redistribute it and/or modify
8        it under the terms of the GNU General Public License as published by
9        the Free Software Foundation; either version 2 of the License, or
10        (at your option) any later version.
11    
12        The GEDCOMViewer tool is distributed in the hope that it will be useful,
13        but WITHOUT ANY WARRANTY; without even the implied warranty of
14        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15        GNU General Public License for more details.
16    
17        You should have received a copy of the GNU General Public License
18        along with the GEDCOMViewer tool ; if not, write to the Free Software
19        Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20    
21    **/
22  #include "BakeryGateway/ViewIndividualRecord.hh"  #include "BakeryGateway/ViewIndividualRecord.hh"
23  #include "options/Options.hh"  #include "options/Options.hh"
24    
# Line 21  void BakeryGateway::ViewIndividualRecord Line 42  void BakeryGateway::ViewIndividualRecord
42      {      {
43        _local_document = get_document();        _local_document = get_document();
44        _individuals = get_document()->getIndividualRecords();        _individuals = get_document()->getIndividualRecords();
45        GEDCOMParser::IndividualRecords_t::const_iterator root =  (get_document()->getRootIndividuals()).begin();        GEDCOMParser::IndividualRecords_t roots = get_document()->getRootIndividuals();
46        std::string root_id = root->first;        GEDCOMParser::IndividualRecords_t::const_iterator root =  roots.begin();
47        _current_individu = _individuals.find(root_id);        if (root != roots.end())
48            {
49              std::string root_id = root->first;
50              _current_individu = _individuals.find(root_id);
51            }
52          else
53            {
54              _current_individu = _individuals.begin();
55            }
56        }
57      if (_current_individu != _individuals.end())
58        {
59          LoadCurrentIndividu();
60          notify_subscribees();
61      }      }
   LoadCurrentIndividu();  
   notify_subscribees();  
62    return;    return;
63  }  }
64    

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26