summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog/basedlgs.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-06-11 14:05:02 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-06-12 13:34:02 +0200
commitcae829e9c1394851fc88829d5197460929c2792a (patch)
tree514d5bdd8fa751636f2498e46952ab3146bae210 /sfx2/source/dialog/basedlgs.cxx
parent9ba797aa4fe8d48649d8c42b07c13d2371f1c980 (diff)
loplugin:unusedmethods
Change-Id: I42667e8483d2cb4363227344faca3899bd95d424 Reviewed-on: https://gerrit.libreoffice.org/73824 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/dialog/basedlgs.cxx')
-rw-r--r--sfx2/source/dialog/basedlgs.cxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx
index 5dc2067dd23d..285ec29229bd 100644
--- a/sfx2/source/dialog/basedlgs.cxx
+++ b/sfx2/source/dialog/basedlgs.cxx
@@ -186,21 +186,6 @@ void SfxModelessDialog::StateChanged( StateChangedType nStateChange )
ModelessDialog::StateChanged( nStateChange );
}
-void SfxModelessDialog::Initialize(SfxChildWinInfo const *pInfo)
-
-/* [Description]
-
- Initialization of the class SfxModelessDialog via a SfxChildWinInfo.
- The initialization is done only in a 2nd step after the constructor, this
- constructor should be called from the derived class or from the
- SfxChildWindows.
-*/
-
-{
- if (pInfo)
- pImpl->aWinState = pInfo->aWinState;
-}
-
void SfxModelessDialog::Resize()
/* [Description]
@@ -350,23 +335,6 @@ bool SfxModelessDialog::Close()
}
-void SfxModelessDialog::FillInfo(SfxChildWinInfo& rInfo) const
-
-/* [Description]
-
- Fills a SfxChildWinInfo with specific data from SfxModelessDialog,
- so that it can be written in the INI file. It is assumed that rinfo
- receives all other possible relevant data in the ChildWindow class.
- ModelessDialogs have no specific information, so that the base
- implementation does nothing and therefore must not be called.
-*/
-
-{
- rInfo.aSize = aSize;
- if ( IsRollUp() )
- rInfo.nFlags |= SfxChildWindowFlags::ZOOMIN;
-}
-
void SfxModelessDialogController::Initialize(SfxChildWinInfo const *pInfo)
/* [Description]