diff options
Diffstat (limited to 'vcl/source/window/stacking.cxx')
-rw-r--r-- | vcl/source/window/stacking.cxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/vcl/source/window/stacking.cxx b/vcl/source/window/stacking.cxx index 5155efcbf632..b6783214f598 100644 --- a/vcl/source/window/stacking.cxx +++ b/vcl/source/window/stacking.cxx @@ -1174,22 +1174,4 @@ void Window::ImplSetFrameParent( const Window* pParent ) } } -const SystemEnvData* Window::GetSystemData() const -{ - - return mpWindowImpl->mpFrame ? mpWindowImpl->mpFrame->GetSystemData() : NULL; -} - -::com::sun::star::uno::Any Window::GetSystemDataAny() const -{ - ::com::sun::star::uno::Any aRet; - const SystemEnvData* pSysData = GetSystemData(); - if( pSysData ) - { - ::com::sun::star::uno::Sequence< sal_Int8 > aSeq( (sal_Int8*)pSysData, pSysData->nSize ); - aRet <<= aSeq; - } - return aRet; -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |