From: Foster B. <fos...@us...> - 2006-01-06 18:36:06
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/begin/sources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/begin/sources Modified Files: express_viewer.cpp report_exception.cpp Log Message: asl 1.0.12 Index: report_exception.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/begin/sources/report_exception.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** report_exception.cpp 7 Nov 2005 18:00:44 -0000 1.1 --- report_exception.cpp 6 Jan 2006 18:35:24 -0000 1.2 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: express_viewer.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/begin/sources/express_viewer.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** express_viewer.cpp 2 Dec 2005 02:52:56 -0000 1.6 --- express_viewer.cpp 6 Jan 2006 18:35:24 -0000 1.7 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) *************** *** 274,281 **** stream << "Adobe contributions by\n"; stream << "\tFoster Brereton, Mat Marcus, Sean Parent,\n"; ! stream << "\tEric Berdahl, Jon Reid\n"; stream << "Opensource community contributions by\n"; stream << "\tDavid Catmull, Jamie Gadd, Peter Kummel,\n"; ! stream << "\tTobias Schwinger, Niki Spahiev, Ralph Thomas\n"; stream << "Using Adobe Source Library v. " << ADOBE_VERSION_MAJOR << "." << ADOBE_VERSION_MINOR << "." << ADOBE_VERSION_SUBMINOR << "\n"; stream << "Using Boost v. " << BOOST_VERSION / 100000 << "." << BOOST_VERSION / 100 % 1000 << "." << BOOST_VERSION % 100 << "\n"; --- 274,283 ---- stream << "Adobe contributions by\n"; stream << "\tFoster Brereton, Mat Marcus, Sean Parent,\n"; ! stream << "\tEric Berdahl, Lubomir Bourdev, Hailin Jin,\n"; ! stream << "\tJon Reid\n"; stream << "Opensource community contributions by\n"; stream << "\tDavid Catmull, Jamie Gadd, Peter Kummel,\n"; ! stream << "\tTobias Schwinger, Niki Spahiev, Ralph Thomas,\n"; ! stream << "\tThomas Witt\n"; stream << "Using Adobe Source Library v. " << ADOBE_VERSION_MAJOR << "." << ADOBE_VERSION_MINOR << "." << ADOBE_VERSION_SUBMINOR << "\n"; stream << "Using Boost v. " << BOOST_VERSION / 100000 << "." << BOOST_VERSION / 100 % 1000 << "." << BOOST_VERSION % 100 << "\n"; *************** *** 305,311 **** } else if ( name == save_adam_name_g ) ! { _adam_file_m.save(); } else if ( name == save_eve_name_g ) ! { _eve_file_m.save(); } else system_beep(); // unknown request. --- 307,321 ---- } else if ( name == save_adam_name_g ) ! { ! _adam_file_m.set_contents(result.begin(), result.end()); ! ! _adam_file_m.save(); ! } else if ( name == save_eve_name_g ) ! { ! _eve_file_m.set_contents(result.begin(), result.end()); ! ! _eve_file_m.save(); ! } else system_beep(); // unknown request. |