summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/dialog.cxx11
-rw-r--r--vcl/source/window/window.cxx9
2 files changed, 0 insertions, 20 deletions
diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx
index 59fcf1518eff..5ef3c0fb0238 100644
--- a/vcl/source/window/dialog.cxx
+++ b/vcl/source/window/dialog.cxx
@@ -882,17 +882,6 @@ bool Dialog::selectPageByUIXMLDescription(const OString& /*rUIXMLDescription*/)
return true;
}
-void Dialog::paintDialog(VirtualDevice& rDevice)
-{
- setDeferredProperties();
- ImplAdjustNWFSizes();
- Show();
- ToTop();
- ensureRepaint();
-
- PaintToDevice(&rDevice, Point(0, 0), Size());
-}
-
void Dialog::InvalidateFloatingWindow(const Point& rPos)
{
if (const vcl::ILibreOfficeKitNotifier* pNotifier = GetLOKNotifier())
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 26a63eea7870..2e6669e46904 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -3203,15 +3203,6 @@ vcl::LOKWindowId Window::GetLOKWindowId() const
return mpWindowImpl->mnLOKWindowId;
}
-void Window::paintDialog(VirtualDevice& rDevice)
-{
- // FIXME are these two necessary?
- Show();
- ToTop();
-
- PaintToDevice(&rDevice, Point(0, 0), Size());
-}
-
Size Window::PaintActiveFloatingWindow(VirtualDevice& rDevice) const
{
Size aRet;