From 4ccc83fb257faabf8b36d585629a0b08e6404059 Mon Sep 17 00:00:00 2001 From: Arnaud Versini Date: Sun, 12 Jun 2016 15:42:19 +0200 Subject: VCL: Simplify MessBox and its children initialisation. Change-Id: Icf24af615e6020b40f92f565194b2328e99f47ad Reviewed-on: https://gerrit.libreoffice.org/26199 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/vcl/msgbox.hxx | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'include') diff --git a/include/vcl/msgbox.hxx b/include/vcl/msgbox.hxx index 5ac566f435d9..802da7da9706 100644 --- a/include/vcl/msgbox.hxx +++ b/include/vcl/msgbox.hxx @@ -41,7 +41,6 @@ protected: OUString maCheckBoxText; bool mbCheck; - SAL_DLLPRIVATE void ImplInitMessBoxData(); SAL_DLLPRIVATE void ImplInitButtons(); SAL_DLLPRIVATE void ImplPosControls(); @@ -67,9 +66,6 @@ public: class VCL_DLLPUBLIC InfoBox : public MessBox { -private: - SAL_DLLPRIVATE void ImplInitInfoBoxData(); - public: InfoBox( vcl::Window* pParent, const OUString& rMessage ); InfoBox( vcl::Window* pParent, WinBits nStyle, @@ -80,9 +76,6 @@ public: class VCL_DLLPUBLIC WarningBox : public MessBox { -private: - SAL_DLLPRIVATE void ImplInitWarningBoxData(); - public: WarningBox( vcl::Window* pParent, WinBits nStyle, const OUString& rMessage ); @@ -94,9 +87,6 @@ public: class VCL_DLLPUBLIC ErrorBox : public MessBox { -private: - SAL_DLLPRIVATE void ImplInitErrorBoxData(); - public: ErrorBox( vcl::Window* pParent, WinBits nStyle, const OUString& rMessage ); -- cgit