summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/cppuhelper/proptypehlp.h1
-rw-r--r--include/cppuhelper/proptypehlp.hxx7
2 files changed, 0 insertions, 8 deletions
diff --git a/include/cppuhelper/proptypehlp.h b/include/cppuhelper/proptypehlp.h
index d163831e66bc..ad44bdf39781 100644
--- a/include/cppuhelper/proptypehlp.h
+++ b/include/cppuhelper/proptypehlp.h
@@ -48,7 +48,6 @@ inline void SAL_CALL convertPropertyValue( sal_uInt16 & target, const css::uno::
inline void SAL_CALL convertPropertyValue( sal_Int8 & target , const css::uno::Any & source );
inline void SAL_CALL convertPropertyValue( float & target , const css::uno::Any & source );
inline void SAL_CALL convertPropertyValue( double &target , const css::uno::Any &source );
-inline void SAL_CALL convertPropertyValue( ::rtl::OUString &target , const css::uno::Any &source );
} // end namespace cppu
diff --git a/include/cppuhelper/proptypehlp.hxx b/include/cppuhelper/proptypehlp.hxx
index a9c55df8bd9c..20b301395f7a 100644
--- a/include/cppuhelper/proptypehlp.hxx
+++ b/include/cppuhelper/proptypehlp.hxx
@@ -272,13 +272,6 @@ inline void SAL_CALL convertPropertyValue( double &d , const css::uno::Any &a )
}
}
-inline void SAL_CALL convertPropertyValue( ::rtl::OUString &ow , const css::uno::Any &a )
-{
- if( !(a >>= ow) ) {
- throw css::lang::IllegalArgumentException();
- }
-}
-
} // end namespace cppu
#endif