diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-01-18 19:48:19 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-01-18 20:45:14 +0100 |
commit | 105546f7f11ccee50f8066bfb7c753fabb177fc8 (patch) | |
tree | 4515108e07c8498bbfb01edf4309b9b6dddf526c /vcl | |
parent | 051e60ff36da9b1b7d0ee5268f74fcd34c4ef059 (diff) |
remove unused code
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/vcl/window.hxx | 3 | ||||
-rw-r--r-- | vcl/source/window/window.cxx | 7 |
2 files changed, 0 insertions, 10 deletions
diff --git a/vcl/inc/vcl/window.hxx b/vcl/inc/vcl/window.hxx index 33544997f55f..ad445b7a0064 100644 --- a/vcl/inc/vcl/window.hxx +++ b/vcl/inc/vcl/window.hxx @@ -1029,9 +1029,6 @@ public: /// request XSpriteCanvas render interface for this window ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XSpriteCanvas > GetSpriteCanvas() const; - /// request fullscreen XSpriteCanvas render interface for this window - ::com::sun::star::uno::Reference< - ::com::sun::star::rendering::XSpriteCanvas > GetFullscreenSpriteCanvas( const Size& rFullscreenSize ) const; /* records all DrawText operations within the passed rectangle; * a synchronous paint is sent to achieve this diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 54ac8b2ad68d..06f1efc586c6 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -9441,13 +9441,6 @@ uno::Reference< rendering::XSpriteCanvas > Window::GetSpriteCanvas() const return xSpriteCanvas; } -uno::Reference< ::com::sun::star::rendering::XSpriteCanvas > Window::GetFullscreenSpriteCanvas( const Size& rFullscreenSize ) const -{ - uno::Reference< rendering::XSpriteCanvas > xSpriteCanvas( - ImplGetCanvas( rFullscreenSize, true, true ), uno::UNO_QUERY ); - return xSpriteCanvas; -} - void Window::ImplPaintToDevice( OutputDevice* i_pTargetOutDev, const Point& i_rPos ) { sal_Bool bRVisible = mpWindowImpl->mbReallyVisible; |