diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-12-14 17:52:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-12-14 17:52:38 +0100 |
commit | 37b21a0a71d500cc5785d856d2e4402df17d8f87 (patch) | |
tree | 16adc0776b651ce79cec7cd6d81636df0cceec25 /ucb/source/ucp/file/filinl.hxx | |
parent | d9aec10456ddc1787a7afe91502b91da616e2b0d (diff) |
Merge shell into TaskManager base class
(arbitrarily decided to keep the latter, being the less odd class name)
Change-Id: I5c061a0f12b8f3095e283b4896f7c910948ac50f
Diffstat (limited to 'ucb/source/ucp/file/filinl.hxx')
-rw-r--r-- | ucb/source/ucp/file/filinl.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ucb/source/ucp/file/filinl.hxx b/ucb/source/ucp/file/filinl.hxx index 224353c3acd1..5292515ab883 100644 --- a/ucb/source/ucp/file/filinl.hxx +++ b/ucb/source/ucp/file/filinl.hxx @@ -19,35 +19,35 @@ #ifndef INCLUDED_UCB_SOURCE_UCP_FILE_FILINL_HXX #define INCLUDED_UCB_SOURCE_UCP_FILE_FILINL_HXX -inline const bool& SAL_CALL shell::MyProperty::IsNative() const +inline const bool& SAL_CALL TaskManager::MyProperty::IsNative() const { return isNative; } -inline const sal_Int32& SAL_CALL shell::MyProperty::getHandle() const +inline const sal_Int32& SAL_CALL TaskManager::MyProperty::getHandle() const { return Handle; } -inline const css::uno::Type& SAL_CALL shell::MyProperty::getType() const +inline const css::uno::Type& SAL_CALL TaskManager::MyProperty::getType() const { return Typ; } -inline const css::uno::Any& SAL_CALL shell::MyProperty::getValue() const +inline const css::uno::Any& SAL_CALL TaskManager::MyProperty::getValue() const { return Value; } -inline const css::beans::PropertyState& SAL_CALL shell::MyProperty::getState() const +inline const css::beans::PropertyState& SAL_CALL TaskManager::MyProperty::getState() const { return State; } -inline const sal_Int16& SAL_CALL shell::MyProperty::getAttributes() const +inline const sal_Int16& SAL_CALL TaskManager::MyProperty::getAttributes() const { return Attributes; } -inline void SAL_CALL shell::MyProperty::setValue( const css::uno::Any& theValue ) const +inline void SAL_CALL TaskManager::MyProperty::setValue( const css::uno::Any& theValue ) const { const_cast<MyProperty*>(this)->Value = theValue; } -inline void SAL_CALL shell::MyProperty::setState( const css::beans::PropertyState& theState ) const +inline void SAL_CALL TaskManager::MyProperty::setState( const css::beans::PropertyState& theState ) const { const_cast<MyProperty*>(this)->State = theState; } |