Updated ChangeLog and Contributors to fix trailing spaces

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14738 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
Robert Osfield 2015-02-27 09:47:58 +00:00
parent b59b0e0253
commit e9f497aa1f
2 changed files with 29 additions and 2 deletions

View File

@ -1,3 +1,26 @@
2015-02-27 09:05 robert
* src/osgPlugins/lua/lua-5.2.3/src/ldo.c,
src/osgPlugins/lua/lua-5.2.3/src/lgc.c,
src/osgPlugins/lua/lua-5.2.3/src/lparser.c,
src/osgPlugins/lua/lua-5.2.3/src/lstrlib.c: Fixed Windows
warnings
2015-02-27 04:29 robert
* examples/osgfpdepth/osgfpdepth.cpp, src/osg/State.cpp: Fixes for
warnings
2015-02-26 20:15 robert
* src/osgText/Text.cpp: Fixed build with auto ptr conversion
switched off
2015-02-26 19:51 robert
* AUTHORS.txt, ChangeLog, applications/osgversion/Contributors.cpp:
Updated AUTHORS
2015-02-26 19:14 robert
* src/osg/Image.cpp: From Bradley Baker Searles, "We had someone

View File

@ -990,7 +990,9 @@ void printContributors(const std::string& changeLog, bool printNumEntries)
cout << "-------------------------" << endl;
for (SortedNameMap::reverse_iterator sitr = sortedNames.rbegin(); sitr != sortedNames.rend(); ++sitr)
{
cout << sitr->first << "\t" << sitr->second.first << " " << sitr->second.second << endl;
cout << sitr->first << "\t" << sitr->second.first;
if (!sitr->second.second.empty()) cout << " " << sitr->second.second;
cout << endl;
}
}
else
@ -999,7 +1001,9 @@ void printContributors(const std::string& changeLog, bool printNumEntries)
cout << "-----------------" << endl;
for (SortedNameMap::reverse_iterator sitr = sortedNames.rbegin(); sitr != sortedNames.rend(); ++sitr)
{
cout << sitr->second.first << " " << sitr->second.second << endl;
cout << sitr->second.first;
if (!sitr->second.second.empty()) cout << " " << sitr->second.second;
cout << endl;
}
}
}