summaryrefslogtreecommitdiff
path: root/include/comphelper/propertybag.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-19 12:51:29 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-20 07:05:25 +0000
commit1b62841b1859ae3443e2bf1ebe99ec3d6afb6cc2 (patch)
treee3b7af8a34c55d7aad95752ad5d642a271523d08 /include/comphelper/propertybag.hxx
parentb1659c95b0620cfd1291f889eae767757f696ae1 (diff)
com::sun::star->css in include/comphelper
Change-Id: Ice569b724732da1fd67a18a4ccf2f92f530cd689 Reviewed-on: https://gerrit.libreoffice.org/19459 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/comphelper/propertybag.hxx')
-rw-r--r--include/comphelper/propertybag.hxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/include/comphelper/propertybag.hxx b/include/comphelper/propertybag.hxx
index 484246a11d17..3cc4ceaeec3b 100644
--- a/include/comphelper/propertybag.hxx
+++ b/include/comphelper/propertybag.hxx
@@ -70,18 +70,18 @@ namespace comphelper
the initial value of the property. Must not be <NULL/>, to allow
determining the property type.
- @throws ::com::sun::star::beans::IllegalTypeException
+ @throws css::beans::IllegalTypeException
if the initial value is <NULL/>
- @throws ::com::sun::star::beans::PropertyExistException
+ @throws css::beans::PropertyExistException
if the name or the handle are already used
- @throws ::com::sun::star::beans::IllegalArgumentException
+ @throws css::beans::IllegalArgumentException
if the name is empty
*/
void addProperty(
const OUString& _rName,
sal_Int32 _nHandle,
sal_Int32 _nAttributes,
- const ::com::sun::star::uno::Any& _rInitialValue
+ const css::uno::Any& _rInitialValue
);
/** adds a property to the bag
@@ -98,16 +98,16 @@ namespace comphelper
@param _nAttributes
the attributes of the property
- @throws ::com::sun::star::beans::IllegalTypeException
+ @throws css::beans::IllegalTypeException
if the initial value is <NULL/>
- @throws ::com::sun::star::beans::PropertyExistException
+ @throws css::beans::PropertyExistException
if the name or the handle are already used
- @throws ::com::sun::star::beans::IllegalArgumentException
+ @throws css::beans::IllegalArgumentException
if the name is empty
*/
void addVoidProperty(
const OUString& _rName,
- const ::com::sun::star::uno::Type& _rType,
+ const css::uno::Type& _rType,
sal_Int32 _nHandle,
sal_Int32 _nAttributes
);
@@ -131,7 +131,7 @@ namespace comphelper
takes, upon return, the descriptions of all properties in the bag
*/
inline void describeProperties(
- ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& _out_rProps
+ css::uno::Sequence< css::beans::Property >& _out_rProps
) const
{
OPropertyContainerHelper::describeProperties( _out_rProps );
@@ -147,7 +147,7 @@ namespace comphelper
*/
void getFastPropertyValue(
sal_Int32 _nHandle,
- ::com::sun::star::uno::Any& _out_rValue
+ css::uno::Any& _out_rValue
) const;
/** converts a to-be-set value of a property (given by handle) so that it can
@@ -169,9 +169,9 @@ namespace comphelper
*/
bool convertFastPropertyValue(
sal_Int32 _nHandle,
- const ::com::sun::star::uno::Any& _rNewValue,
- ::com::sun::star::uno::Any& _out_rConvertedValue,
- ::com::sun::star::uno::Any& _out_rCurrentValue
+ const css::uno::Any& _rNewValue,
+ css::uno::Any& _out_rConvertedValue,
+ css::uno::Any& _out_rCurrentValue
) const;
/** sets a new value for a property given by handle
@@ -180,7 +180,7 @@ namespace comphelper
*/
void setFastPropertyValue(
sal_Int32 _nHandle,
- const ::com::sun::star::uno::Any& _rValue
+ const css::uno::Any& _rValue
);
/** returns the default value for a property given by handle
@@ -197,7 +197,7 @@ namespace comphelper
*/
void getPropertyDefaultByHandle(
sal_Int32 _nHandle,
- ::com::sun::star::uno::Any& _out_rValue
+ css::uno::Any& _out_rValue
) const;
/** determines whether a property with a given name is part of the bag