diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-12 16:57:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-13 08:12:45 +0100 |
commit | d59987b164bc32efe8f99ad49c139b4fc7ca3c2f (patch) | |
tree | 765652d6e940a5bdf43322ed54aa2f4c14116418 /vcl/inc | |
parent | b4641df5de7842d6a8fc2c4f839214bf01160c8c (diff) |
loplugin:expandablemethods
Change-Id: I333d91ea5ce78c82e9bb107f934614efc7bfb8f7
Reviewed-on: https://gerrit.libreoffice.org/85078
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/wizdlg.hxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/vcl/inc/wizdlg.hxx b/vcl/inc/wizdlg.hxx index 5b25eab29671..eeb17934d617 100644 --- a/vcl/inc/wizdlg.hxx +++ b/vcl/inc/wizdlg.hxx @@ -92,12 +92,6 @@ namespace vcl only to be used during construction, before any layouting happened */ void SetLeftAlignedButtonCount( sal_Int16 _nCount ); - /** declares the view area to have an empty margin - - Normally, the view area has a certain margin to the top/left/bottom/right of the - dialog. By calling this method, you can reduce this margin to 0. - */ - void SetEmptyViewMargin(); void CalcAndSetSize(); @@ -138,12 +132,6 @@ namespace vcl void AddButton( Button* pButton, long nOffset = 0 ); void RemoveButton( Button* pButton ); - void SetPrevButton( PushButton* pButton ) { mpPrevBtn = pButton; } - void SetNextButton( PushButton* pButton ) { mpNextBtn = pButton; } - - void SetViewWindow( vcl::Window* pWindow ) { mpViewWindow = pWindow; } - void SetViewAlign( WindowAlign eAlign ) { meViewAlign = eAlign; } - void SetPageSizePixel( const Size& rSize ) { maPageSize = rSize; } const Size& GetPageSizePixel() const { return maPageSize; } @@ -192,11 +180,6 @@ namespace vcl */ WizardTypes::WizardState determineNextState(WizardTypes::WizardState nCurrentState) const; - /** called when the finish button is pressed - <p>By default, only the base class' Finish method (which is not virtual) is called</p> - */ - bool onFinish(); - /// travel to the next state bool travelNext(); |