summaryrefslogtreecommitdiff
path: root/comphelper/source/property/opropertybag.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/property/opropertybag.hxx')
-rw-r--r--comphelper/source/property/opropertybag.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/comphelper/source/property/opropertybag.hxx b/comphelper/source/property/opropertybag.hxx
index 678c457b563f..df08b946d349 100644
--- a/comphelper/source/property/opropertybag.hxx
+++ b/comphelper/source/property/opropertybag.hxx
@@ -44,7 +44,7 @@ namespace comphelper
{
- struct UnoTypeLess : public ::std::unary_function< css::uno::Type, bool >
+ struct UnoTypeLess : public std::unary_function< css::uno::Type, bool >
{
inline bool operator()( const css::uno::Type& _rLHS, const css::uno::Type& _rRHS ) const
{
@@ -55,8 +55,8 @@ namespace comphelper
}
};
- typedef ::std::map< sal_Int32, css::uno::Any > MapInt2Any;
- typedef ::std::set< css::uno::Type, UnoTypeLess > TypeBag;
+ typedef std::map< sal_Int32, css::uno::Any > MapInt2Any;
+ typedef std::set< css::uno::Type, UnoTypeLess > TypeBag;
typedef ::cppu::WeakAggImplHelper5 < css::beans::XPropertyBag
, css::util::XModifiable
@@ -73,7 +73,7 @@ namespace comphelper
{
private:
/// our IPropertyArrayHelper implementation
- ::std::unique_ptr< ::cppu::OPropertyArrayHelper >
+ std::unique_ptr< ::cppu::OPropertyArrayHelper >
m_pArrayHelper;
::comphelper::PropertyBag
m_aDynamicProperties;