summaryrefslogtreecommitdiffstats
path: root/xmloff
diff options
context:
space:
mode:
authorJesús Corrius <jesus@softcatala.org>2010-10-16 00:44:44 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2010-10-17 07:49:34 +0200
commit5639017c2181159c5e14f01f9b7f0efe77277c64 (patch)
treebdcb52e64a516d0fbc4aeae69237be320e301423 /xmloff
parentuse SAL_N_ELEMENTS macro (diff)
downloadcore-5639017c2181159c5e14f01f9b7f0efe77277c64.tar.gz
core-5639017c2181159c5e14f01f9b7f0efe77277c64.zip
Make calls to unary_function and binary_function less ambiguous for VC10
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/xmlimppr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/style/xmlimppr.cxx b/xmloff/source/style/xmlimppr.cxx
index 7a9f85a12ffe..0d07a58c7a6c 100644
--- a/xmloff/source/style/xmlimppr.cxx
+++ b/xmloff/source/style/xmlimppr.cxx
@@ -593,7 +593,7 @@ typedef pair<const OUString*, const Any* > PropertyPair;
typedef vector<PropertyPair> PropertyPairs;
struct PropertyPairLessFunctor :
- public binary_function<PropertyPair, PropertyPair, bool>
+ public std::binary_function<PropertyPair, PropertyPair, bool>
{
bool operator()( const PropertyPair& a, const PropertyPair& b ) const
{