[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - cui/source include/vcl

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Nov 29 23:48:09 UTC 2018


 cui/source/factory/dlgfact.cxx |    6 ------
 cui/source/factory/dlgfact.hxx |    6 ------
 include/vcl/abstdlg.hxx        |    8 --------
 3 files changed, 20 deletions(-)

New commits:
commit 9766892044fc69de18d0395ec2c4a0e652165c23
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Nov 29 09:25:34 2018 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Fri Nov 30 00:47:45 2018 +0100

    drop unused VclAbstractRefreshableDialog
    
    Change-Id: I11ce3235ee95d7c6e8b1832579d097c7b044ae52
    Reviewed-on: https://gerrit.libreoffice.org/64277
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index 206d4a13cca9..759b90bc53c6 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -110,7 +110,6 @@ short CuiAbstractSingleTabController_Impl::Execute()
 }
 
 IMPL_ABSTDLG_BASE(CuiVclAbstractDialog_Impl)
-IMPL_ABSTDLG_BASE(VclAbstractRefreshableDialog_Impl);
 IMPL_ABSTDLG_BASE(CuiAbstractTabDialog_Impl);
 
 short AbstractSvxDistributeDialog_Impl::Execute()
@@ -554,11 +553,6 @@ sal_uInt32 AbstractGalleryIdDialog_Impl::GetId() const
     return m_xDlg->GetId();
 }
 
-void VclAbstractRefreshableDialog_Impl::Update()
-{
-    pDlg->Update();
-}
-
 OUString AbstractURLDlg_Impl::GetURL() const
 {
     return pDlg->GetURL();
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index 40f51fb6c681..1e103792893d 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -97,12 +97,6 @@ public:
     virtual short Execute() override;
 };
 
-class VclAbstractRefreshableDialog_Impl : public VclAbstractRefreshableDialog
-{
-    DECL_ABSTDLG_BASE(VclAbstractRefreshableDialog_Impl,Dialog)
-    virtual void        Update() override ;
-};
-
 class CuiAbstractSfxDialog_Impl : public SfxAbstractDialog
 {
     DECL_ABSTDLG_BASE(CuiAbstractSfxDialog_Impl,SfxModalDialog)
diff --git a/include/vcl/abstdlg.hxx b/include/vcl/abstdlg.hxx
index 353a542439cf..f000d92c26e5 100644
--- a/include/vcl/abstdlg.hxx
+++ b/include/vcl/abstdlg.hxx
@@ -86,14 +86,6 @@ public:
     virtual void        EndDialog(sal_Int32 nResult) = 0;
 };
 
-class VCL_DLLPUBLIC VclAbstractRefreshableDialog : public VclAbstractDialog
-{
-protected:
-    virtual             ~VclAbstractRefreshableDialog() override = default;
-public:
-    virtual void        Update() = 0;
-};
-
 class VCL_DLLPUBLIC AbstractPasswordToOpenModifyDialog : public VclAbstractDialog
 {
 protected:


More information about the Libreoffice-commits mailing list