|
From: Ralph T. <ra...@us...> - 2005-04-08 22:47:57
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/sources/win In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23222/adobe-source/adobe/test/visual/sources/win Modified Files: main.cpp Log Message: Oops! Committed main.cpp without exception handling (which I use for debugging) by mistake, putting correct version back in again. Index: main.cpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/sources/win/main.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** main.cpp 8 Apr 2005 21:03:50 -0000 1.4 --- main.cpp 8 Apr 2005 22:47:48 -0000 1.5 *************** *** 144,148 **** int WinMain( HINSTANCE hInst, HINSTANCE hInstPrev, LPSTR lpCmdLine, int nCmdShow ) { ! // try { adobe::simpleApplication* theApp = adobe::simpleApplication::getInstance(); --- 144,148 ---- int WinMain( HINSTANCE hInst, HINSTANCE hInstPrev, LPSTR lpCmdLine, int nCmdShow ) { ! try { adobe::simpleApplication* theApp = adobe::simpleApplication::getInstance(); *************** *** 150,157 **** if( theApp ) theApp->run(); } ! // catch( ... ) ! // { ! // adobe::report_exception(); ! // } return 0; --- 150,157 ---- if( theApp ) theApp->run(); } ! catch( ... ) ! { ! adobe::report_exception(); ! } return 0; |