summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-08 10:25:58 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-10 08:21:20 +0000
commit001e694ecd21095b6fcfb5632ace63d8e0c2b7f8 (patch)
tree6a78b42161a396b3a63e55a4e5c2fa45d76311c2 /cui
parentf06f06d50393184f1ca2e27db6167b08edc26cb3 (diff)
loplugin:unusedmethods vcl(part2)
Change-Id: I12356b3fdce68282a30cae2b270b02e46558860a Reviewed-on: https://gerrit.libreoffice.org/16847 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/factory/dlgfact.cxx15
-rw-r--r--cui/source/factory/dlgfact.hxx3
2 files changed, 0 insertions, 18 deletions
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index 8826c9c33583..197d79540212 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -449,11 +449,6 @@ void AbstractSearchProgress_Impl::Update()
pDlg->Update();
}
-void AbstractSearchProgress_Impl::Sync()
-{
- pDlg->Sync();
-}
-
void AbstractSearchProgress_Impl::SetFileType( const OUString& rType )
{
pDlg->SetFileType( rType );
@@ -473,11 +468,6 @@ void AbstractTakeProgress_Impl::Update()
pDlg->Update();
}
-void AbstractTakeProgress_Impl::Sync()
-{
- pDlg->Sync();
-}
-
void AbstractTakeProgress_Impl::SetFile( const INetURLObject& rURL )
{
pDlg->SetFile( rURL );
@@ -503,11 +493,6 @@ void VclAbstractRefreshableDialog_Impl::Update()
pDlg->Update();
}
-void VclAbstractRefreshableDialog_Impl::Sync()
-{
- pDlg->Sync();
-}
-
OUString AbstractURLDlg_Impl::GetURL() const
{
return pDlg->GetURL();
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index 943811d927c6..a987ab8f4eeb 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -97,7 +97,6 @@ class VclAbstractRefreshableDialog_Impl : public VclAbstractRefreshableDialog
{
DECL_ABSTDLG_BASE(VclAbstractRefreshableDialog_Impl,Dialog)
virtual void Update() SAL_OVERRIDE ;
- virtual void Sync() SAL_OVERRIDE ;
};
class CuiAbstractSfxDialog_Impl : public SfxAbstractDialog
@@ -213,7 +212,6 @@ class AbstractSearchProgress_Impl : public AbstractSearchProgress
{
DECL_ABSTDLG_BASE(AbstractSearchProgress_Impl,SearchProgress)
virtual void Update() SAL_OVERRIDE ;
- virtual void Sync() SAL_OVERRIDE ;
virtual void SetFileType( const OUString& rType ) SAL_OVERRIDE ;
virtual void SetDirectory( const INetURLObject& rURL ) SAL_OVERRIDE ;
virtual PLinkStub GetLinkStubCleanUpHdl() SAL_OVERRIDE ;
@@ -225,7 +223,6 @@ class AbstractTakeProgress_Impl : public AbstractTakeProgress
{
DECL_ABSTDLG_BASE(AbstractTakeProgress_Impl,TakeProgress)
virtual void Update() SAL_OVERRIDE ;
- virtual void Sync() SAL_OVERRIDE ;
virtual void SetFile( const INetURLObject& rURL ) SAL_OVERRIDE ;
virtual PLinkStub GetLinkStubCleanUpHdl() SAL_OVERRIDE ;