Update of /cvsroot/objecthandler/ObjectHandler/ohxl
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18276/ohxl
Modified Files:
callingrange.cpp objecthandlerxl.hpp
Log Message:
instanceName -> objectID
Index: objecthandlerxl.hpp
===================================================================
RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/objecthandlerxl.hpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** objecthandlerxl.hpp 20 Sep 2006 20:17:07 -0000 1.14
--- objecthandlerxl.hpp 4 Oct 2006 09:37:43 -0000 1.15
***************
*** 41,45 ****
static ObjectHandlerXL &instance();
! //! Store Object with given instance name.
/*! This function is optimized for the base case where the calling range
contains a single formula.
--- 41,45 ----
static ObjectHandlerXL &instance();
! //! Store Object with given ID.
/*! This function is optimized for the base case where the calling range
contains a single formula.
***************
*** 49,53 ****
possibility that functions to construct Objects are intermixed with
functions from another source e.g. Excel or some other user addin
! - "anonymous objects" i.e. the user has not supplied an instance name
and a default value is generated
--- 49,53 ----
possibility that functions to construct Objects are intermixed with
functions from another source e.g. Excel or some other user addin
! - "anonymous objects" i.e. the user has not supplied an ID
and a default value is generated
Index: callingrange.cpp
===================================================================
RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/callingrange.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** callingrange.cpp 20 Sep 2006 20:17:07 -0000 1.10
--- callingrange.cpp 4 Oct 2006 09:37:43 -0000 1.11
***************
*** 249,253 ****
for (i = callingRange.residentObjects_.begin();
i != callingRange.residentObjects_.end(); i++)
! out << std::setw(COL_WIDTH) << " instance name: "
<< i->first << std::endl;
out << std::endl;
--- 249,253 ----
for (i = callingRange.residentObjects_.begin();
i != callingRange.residentObjects_.end(); i++)
! out << std::setw(COL_WIDTH) << " object ID: "
<< i->first << std::endl;
out << std::endl;
|