diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-04-02 13:50:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-04-02 17:56:33 +0200 |
commit | 840be9fdccb99eb3faccf9695186810eba5de8e4 (patch) | |
tree | 227f5ea442854cb03d918d34657ee36ba607f1ac /include | |
parent | 7637054838aa71374dc02c32566dcd5d3ded2d0d (diff) |
make ensureRepaint private
Change-Id: Iaa15e12af8e59ed585e07d620353a05e4b8b5a26
Reviewed-on: https://gerrit.libreoffice.org/52257
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/dialog.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx index 6104def06236..45f76c1e5521 100644 --- a/include/vcl/dialog.hxx +++ b/include/vcl/dialog.hxx @@ -72,6 +72,11 @@ private: DECL_DLLPRIVATE_LINK(ImplAsyncCloseHdl, void*, void); DECL_DLLPRIVATE_LINK(ResponseHdl, Button*, void); + // ensureRepaint - triggers Application::Yield until the dialog is + // completely repainted. Sometimes needed for dialogs showing progress + // during actions + void ensureRepaint(); + protected: using Window::ImplInit; void ImplInit( vcl::Window* pParent, WinBits nStyle, InitFlag eFlag = InitFlag::Default ); @@ -121,11 +126,6 @@ public: virtual void PrePaint(vcl::RenderContext& rRenderContext) override; virtual void PostPaint(vcl::RenderContext& rRenderContext) override; - // ensureRepaint - triggers Application::Yield until the dialog is - // completely repainted. Sometimes needed for dialogs showing progress - // during actions - void ensureRepaint(); - // Screenshot interface virtual std::vector<OString> getAllPageUIXMLDescriptions() const; virtual bool selectPageByUIXMLDescription(const OString& rUIXMLDescription); |