[ObjectHandler-cvs] ObjectHandler/ohxl/Functions manual.cpp, 1.16, 1.17
Brought to you by:
ericehlers,
nando
From: Ferdinando A. <na...@us...> - 2007-01-11 11:24:27
|
Update of /cvsroot/objecthandler/ObjectHandler/ohxl/Functions In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv16510/ohxl/Functions Modified Files: manual.cpp Log Message: in synch with latest FunctionCall policy Index: manual.cpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/Functions/manual.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** manual.cpp 3 Jan 2007 16:25:02 -0000 1.16 --- manual.cpp 11 Jan 2007 11:24:26 -0000 1.17 *************** *** 78,82 **** OPER *dummy9) { ! boost::shared_ptr<ObjHandler::FunctionCall> functionCall; try { --- 78,83 ---- OPER *dummy9) { ! //boost::shared_ptr<ObjHandler::FunctionCall> functionCall; ! ObjHandler::FunctionCall functionCall("ohTrigger"); try { *************** *** 84,91 **** // initialize Function Call object ! functionCall = boost::shared_ptr<ObjHandler::FunctionCall> ! ( new ObjHandler::FunctionCall("ohTrigger") ); ! if (functionCall->IsCalledByFuncWiz()) ! return 0; // reset the calling cell --- 85,92 ---- // initialize Function Call object ! //functionCall = boost::shared_ptr<ObjHandler::FunctionCall> ! // ( new ObjHandler::FunctionCall("ohTrigger") ); ! //if (functionCall->IsCalledByFuncWiz()) ! // return 0; // reset the calling cell *************** *** 144,148 **** XLL_DEC OPER *ohPack(OPER *xInputRange) { ! boost::shared_ptr < ObjHandler::FunctionCall > functionCall; OPER xMulti; static OPER xRet; --- 145,150 ---- XLL_DEC OPER *ohPack(OPER *xInputRange) { ! ObjHandler::FunctionCall functionCall("ohPack"); ! //boost::shared_ptr < ObjHandler::FunctionCall > functionCall; OPER xMulti; static OPER xRet; *************** *** 150,155 **** try { ! functionCall = boost::shared_ptr < ObjHandler::FunctionCall > ! ( new ObjHandler::FunctionCall("ohPack") ); Excel(xlCoerce, &xMulti, 2, xInputRange, TempInt(xltypeMulti)); --- 152,157 ---- try { ! //functionCall = boost::shared_ptr < ObjHandler::FunctionCall > ! // ( new ObjHandler::FunctionCall("ohPack") ); Excel(xlCoerce, &xMulti, 2, xInputRange, TempInt(xltypeMulti)); |