summaryrefslogtreecommitdiff
path: root/sfx2/source/appl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-25 11:03:15 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-25 12:03:50 +0200
commit2fffaf6f05d829e345ad8b391646a6e8df9a9a26 (patch)
treeec1b7343262433ee2ea9ab6e5197b6fd2327b685 /sfx2/source/appl
parentf74da1315a5b2ec232a66944e41ff90231b383be (diff)
loplugin:unusedmethods
Change-Id: Ia874baf21257e5fe41e104211068a2bcc50446eb Reviewed-on: https://gerrit.libreoffice.org/40391 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r--sfx2/source/appl/app.cxx6
-rw-r--r--sfx2/source/appl/childwin.cxx5
-rw-r--r--sfx2/source/appl/childwinimpl.cxx5
3 files changed, 0 insertions, 16 deletions
diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx
index f26a70439849..81ae44aac601 100644
--- a/sfx2/source/appl/app.cxx
+++ b/sfx2/source/appl/app.cxx
@@ -343,15 +343,9 @@ void SfxApplication::SetViewFrame_Impl( SfxViewFrame *pFrame )
pFrame->GetViewShell()->SetCurrentDocument();
}
-std::locale* SfxApplication::GetSfxResLocale()
-{
- return SfxResLocale::GetResLocale();
-}
-
void SfxApplication::SetProgress_Impl
(
SfxProgress *pProgress
-
)
{
DBG_ASSERT( ( !pImpl->pProgress && pProgress ) ||
diff --git a/sfx2/source/appl/childwin.cxx b/sfx2/source/appl/childwin.cxx
index 6a911dc168cb..3a8d85c2a9df 100644
--- a/sfx2/source/appl/childwin.cxx
+++ b/sfx2/source/appl/childwin.cxx
@@ -681,11 +681,6 @@ void SfxChildWindow::SetFrame( const css::uno::Reference< css::frame::XFrame > &
}
}
-bool SfxChildWindow::CanGetFocus() const
-{
- return !(pImpl->pFact->aInfo.nFlags & SfxChildWindowFlags::CANTGETFOCUS);
-}
-
void SfxChildWindowContext::RegisterChildWindowContext(SfxModule* pMod, sal_uInt16 nId, SfxChildWinContextFactory* pFact)
{
SfxGetpApp()->RegisterChildWindowContext_Impl( pMod, nId, pFact );
diff --git a/sfx2/source/appl/childwinimpl.cxx b/sfx2/source/appl/childwinimpl.cxx
index 21e508f01f19..8d8e362b91d5 100644
--- a/sfx2/source/appl/childwinimpl.cxx
+++ b/sfx2/source/appl/childwinimpl.cxx
@@ -100,11 +100,6 @@ void SfxFrameArr_Impl::push_back( SfxFrame* p )
maData.push_back(p);
}
-size_t SfxFrameArr_Impl::size() const
-{
- return maData.size();
-}
-
bool SfxFrameArr_Impl::empty() const
{
return maData.empty();