summaryrefslogtreecommitdiff
path: root/vcl/qt5
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-11-03 18:25:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-04 06:34:37 +0100
commiteeed9103350d886f5913aed9b525d863a421dffa (patch)
treec2cc52543e7378e83f328aae2131c9777cc315b6 /vcl/qt5
parent81fe31d2c8977791f9b90ab1da4fbb1a778f87fb (diff)
loplugin:unusedmethods
Change-Id: I58fb6477222a26455f5db0a7d972c46f290c085c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105261 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/qt5')
-rw-r--r--vcl/qt5/Qt5Frame.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/vcl/qt5/Qt5Frame.cxx b/vcl/qt5/Qt5Frame.cxx
index f25360378268..06984b983a79 100644
--- a/vcl/qt5/Qt5Frame.cxx
+++ b/vcl/qt5/Qt5Frame.cxx
@@ -1437,15 +1437,4 @@ void Qt5Frame::handleDragLeave()
m_bInDrag = false;
}
-cairo_t* Qt5Frame::getCairoContext() const
-{
- cairo_t* cr = nullptr;
- if (m_bUseCairo)
- {
- cr = cairo_create(m_pSurface.get());
- assert(cr);
- }
- return cr;
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */