[Igarden-commit] Garden/source/Plugins PluginUtils.cpp, 1.18.2.1, 1.18.2.2
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2007-02-07 14:19:28
|
Update of /cvsroot/igarden/Garden/source/Plugins In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv21334 Modified Files: Tag: Release_branch_v1 PluginUtils.cpp Log Message: Fix problem where an extra space was introduced into cross-names (caused miscompare of species names) Index: PluginUtils.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Plugins/PluginUtils.cpp,v retrieving revision 1.18.2.1 retrieving revision 1.18.2.2 diff -C2 -d -r1.18.2.1 -r1.18.2.2 *** PluginUtils.cpp 29 Dec 2006 15:45:40 -0000 1.18.2.1 --- PluginUtils.cpp 7 Feb 2007 14:18:55 -0000 1.18.2.2 *************** *** 320,324 **** { GetToken(&txt, tmp); ! epithet = String(" x ") + tmp; } else if(epithet[0] == L'\'') --- 320,324 ---- { GetToken(&txt, tmp); ! epithet = String("x ") + tmp; } else if(epithet[0] == L'\'') |