diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-03-18 17:43:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-03-18 17:43:03 +0000 |
commit | 3d495712258359d14c3d08b29caaa8b66a9b621c (patch) | |
tree | 421955b973e6299d20ef6028bcaedbffba034b35 /vcl/source | |
parent | 641b6f2037bec26097574dd921219101d8386da5 (diff) |
revert work in progress
Change-Id: I1387b0ed7b2d8bb9df801c03cf59efc9c0e1cfd3
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/outdev/outdev.cxx | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx index 8c3820f3060b..c64fbfffcc84 100644 --- a/vcl/source/outdev/outdev.cxx +++ b/vcl/source/outdev/outdev.cxx @@ -308,39 +308,6 @@ bool OutputDevice::SupportsCairo() const return mpGraphics->SupportsCairo(); } -bool OutputDevice::CanResizeCairoSurface() const -{ - if (!mpGraphics) - { - if (!AcquireGraphics()) - return false; - } - - return mpGraphics->CanResizeCairoSurface(); -} - -cairo_t* OutputDevice::GetCairoContext() const -{ - if (!mpGraphics) - { - if (!AcquireGraphics()) - return NULL; - } - - return mpGraphics->GetCairoContext(); -} - -void OutputDevice::FlushCairoContext(cairo_t* cr) const -{ - if (!mpGraphics) - { - if (!AcquireGraphics()) - return; - } - - mpGraphics->FlushCairoContext(cr); -} - css::uno::Any OutputDevice::GetSystemGfxDataAny() const { const SystemGraphicsData aSysData = GetSystemGfxData(); |