summaryrefslogtreecommitdiffstats
path: root/vcl
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-01-18 19:48:19 +0100
committerThomas Arnhold <thomas@arnhold.org>2012-01-18 20:45:14 +0100
commit105546f7f11ccee50f8066bfb7c753fabb177fc8 (patch)
tree4515108e07c8498bbfb01edf4309b9b6dddf526c /vcl
parentbin some unused code (diff)
downloadcore-105546f7f11ccee50f8066bfb7c753fabb177fc8.tar.gz
core-105546f7f11ccee50f8066bfb7c753fabb177fc8.zip
remove unused code
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/vcl/window.hxx3
-rw-r--r--vcl/source/window/window.cxx7
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;