summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorJesús Corrius <jesus@softcatala.org>2010-10-16 00:43:11 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2010-10-16 22:41:56 +0200
commit6ece05cb92fa7b6f3b2e0994e19383bc92a1b2ac (patch)
tree797bc0c38625525f9dc932d439b63d463ac9650b /chart2
parent8b60c1e93567f0d1f55567f239f24240acc5c0c3 (diff)
Make calls to unary_function and binary_function less ambiguous for VC10
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/model/template/DataInterpreter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/model/template/DataInterpreter.cxx b/chart2/source/model/template/DataInterpreter.cxx
index ed447b065460..eb3f724fd577 100644
--- a/chart2/source/model/template/DataInterpreter.cxx
+++ b/chart2/source/model/template/DataInterpreter.cxx
@@ -236,7 +236,7 @@ sal_Bool SAL_CALL DataInterpreter::isDataCompatible(
namespace
{
-struct lcl_LabeledSequenceEquals : public unary_function< Reference< data::XLabeledDataSequence >, bool >
+struct lcl_LabeledSequenceEquals : public std::unary_function< Reference< data::XLabeledDataSequence >, bool >
{
lcl_LabeledSequenceEquals( const Reference< data::XLabeledDataSequence > & xLSeqToCmp ) :
m_bHasLabels ( false ),