summaryrefslogtreecommitdiff
path: root/include/svtools/wizdlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-08-14 16:57:53 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-08-15 08:26:02 +0100
commit85cf4881fc4e1bfa5f21ae3e719bbd40ba3fce8b (patch)
treed04747b9c0f5db0e34831fc8dc9e3073e0a16b14 /include/svtools/wizdlg.hxx
parent7de2366a975c22cd77a1a3a64da6b7c642334ae1 (diff)
drop FixedLines from wizards to be consistent with the rest of the ui
and two virtual methods don't need to exist after that Change-Id: I50ea8eaa99fddfed7e0c61e99e76631aa595f2dc
Diffstat (limited to 'include/svtools/wizdlg.hxx')
-rw-r--r--include/svtools/wizdlg.hxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/svtools/wizdlg.hxx b/include/svtools/wizdlg.hxx
index 6ee3deb5449e..7680d41aeff3 100644
--- a/include/svtools/wizdlg.hxx
+++ b/include/svtools/wizdlg.hxx
@@ -27,7 +27,6 @@
class TabPage;
class Button;
class PushButton;
-class FixedLine;
struct ImplWizPageData;
struct ImplWizButtonData;
@@ -88,9 +87,6 @@ den Buttons bei allen Dialogen gleich ist, gibt es das Define
WIZARDDIALOG_BUTTON_STDOFFSET_X, welches als Standard-Offset genommen
werden sollte.
-Mit ShowButtonFixedLine() kann gesteuert werden, ob die zwischen den
-Buttons und der TabPage eine Trennlinie angezeigt werden soll.
-
Mit SetViewWindow() und SetViewAlign() kann ein Control gesetzt werden,
welches als Preview-Window oder fuer die Anzeige von schoenen Bitmaps
genutzt werden kann.
@@ -135,9 +131,6 @@ maNextBtn.SetClickHdl( LINK( this, MyWizardDlg, ImplNextHdl ) );
// Set PreviewWindow
SetViewWindow( &maPreview );
-// Show line between Buttons and Page
-ShowButtonFixedLine( sal_True );
-
// Call ActivatePage, because the first page should be created an activated
ActivatePage();
@@ -214,7 +207,6 @@ private:
Size maPageSize;
ImplWizPageData* mpFirstPage;
ImplWizButtonData* mpFirstBtn;
- FixedLine* mpFixedLine;
TabPage* mpCurTabPage;
PushButton* mpPrevBtn;
PushButton* mpNextBtn;
@@ -284,8 +276,6 @@ public:
void SetNextButton( PushButton* pButton ) { mpNextBtn = pButton; }
PushButton* GetNextButton() const { return mpNextBtn; }
- void ShowButtonFixedLine( bool bVisible );
-
void SetViewWindow( Window* pWindow ) { mpViewWindow = pWindow; }
Window* GetViewWindow() const { return mpViewWindow; }
void SetViewAlign( WindowAlign eAlign ) { meViewAlign = eAlign; }