summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filinl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/file/filinl.hxx')
-rw-r--r--ucb/source/ucp/file/filinl.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/ucp/file/filinl.hxx b/ucb/source/ucp/file/filinl.hxx
index 4ad0a6623961..b2db314516ce 100644
--- a/ucb/source/ucp/file/filinl.hxx
+++ b/ucb/source/ucp/file/filinl.hxx
@@ -45,23 +45,23 @@ inline const sal_Int16& SAL_CALL shell::MyProperty::getAttributes() const
}
inline void SAL_CALL shell::MyProperty::setHandle( const sal_Int32& __Handle ) const
{
- (( MyProperty* )this )->Handle = __Handle;
+ const_cast<MyProperty*>(this)->Handle = __Handle;
}
inline void SAL_CALL shell::MyProperty::setType( const com::sun::star::uno::Type& __Typ ) const
{
- (( MyProperty* )this )->Typ = __Typ;
+ const_cast<MyProperty*>(this)->Typ = __Typ;
}
inline void SAL_CALL shell::MyProperty::setValue( const com::sun::star::uno::Any& __Value ) const
{
- (( MyProperty* )this )->Value = __Value;
+ const_cast<MyProperty*>(this)->Value = __Value;
}
inline void SAL_CALL shell::MyProperty::setState( const com::sun::star::beans::PropertyState& __State ) const
{
- (( MyProperty* )this )->State = __State;
+ const_cast<MyProperty*>(this)->State = __State;
}
inline void SAL_CALL shell::MyProperty::setAttributes( const sal_Int16& __Attributes ) const
{
- (( MyProperty* )this )->Attributes = __Attributes;
+ const_cast<MyProperty*>(this)->Attributes = __Attributes;
}