Update of /cvsroot/objecthandler/ObjectHandler/ohxl
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17191/ohxl
Modified Files:
rangereference.cpp
Log Message:
uppercase not used anymore: use boost::algorithm::to_upper_copy instead
Index: rangereference.cpp
===================================================================
RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/rangereference.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** rangereference.cpp 6 Dec 2006 11:58:31 -0000 1.3
--- rangereference.cpp 2 Jan 2007 11:10:34 -0000 1.4
***************
*** 19,22 ****
--- 19,23 ----
#include <oh/exception.hpp>
#include <oh/utilities.hpp>
+ #include <boost/algorithm/string.hpp>
#include <boost/regex.hpp>
#include <boost/lexical_cast.hpp>
***************
*** 27,31 ****
: addressOriginal_(address) {
! addressUpper_ = uppercase(address);
if (!init1() && !init2()) {
--- 28,32 ----
: addressOriginal_(address) {
! addressUpper_ = boost::algorithm::to_upper_copy(address);
if (!init1() && !init2()) {
|