diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-23 15:34:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-24 10:05:21 +0100 |
commit | 80bf2654d72995f6b13c5addcd7c5e89ec76b0d9 (patch) | |
tree | 8731298671cd5778481856a5e7e52471135e933f /cui/source/inc/iconcdlg.hxx | |
parent | 360796b491d9e05f1438e97c88f15ad0f1cda281 (diff) |
meChoicePos is always PosLeft, simplify
Change-Id: I40085b0db89484f0d24ecaccf910f4399198294d
Diffstat (limited to 'cui/source/inc/iconcdlg.hxx')
-rw-r--r-- | cui/source/inc/iconcdlg.hxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/cui/source/inc/iconcdlg.hxx b/cui/source/inc/iconcdlg.hxx index 576ddbea97cd..30effcc27bc3 100644 --- a/cui/source/inc/iconcdlg.hxx +++ b/cui/source/inc/iconcdlg.hxx @@ -44,9 +44,6 @@ class IconChoicePage; typedef IconChoicePage* (*CreatePage)(Window *pParent, IconChoiceDialog* pDlg, const SfxItemSet &rAttrSet); typedef const sal_uInt16* (*GetPageRanges)(); // gives international Which-value -// position of iconchoicectrl -enum EIconChoicePos { PosLeft, PosRight, PosTop, PosBottom }; - /// Data-structure for pages in dialog struct IconChoicePageData { @@ -129,7 +126,6 @@ class IconChoiceDialog : public ModalDialog private : friend class IconChoicePage; - EIconChoicePos meChoicePos; ::std::vector< IconChoicePageData* > maPageList; SvtIconChoiceCtrl *m_pIconCtrl; @@ -191,7 +187,7 @@ public : // the IconChoiceCtrl's could also be set in the Ctor IconChoiceDialog ( Window* pParent, const OString& rID, const OUString& rUIXMLDescription, - const EIconChoicePos ePos = PosLeft, const SfxItemSet * pItemSet = 0 ); + const SfxItemSet * pItemSet = 0 ); virtual ~IconChoiceDialog (); virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE; @@ -225,7 +221,7 @@ public : const SfxItemSet* GetExampleSet() const { return pExampleSet; } - EIconChoicePos SetCtrlPos ( const EIconChoicePos& rPos ); + void SetCtrlPos(); }; #endif // INCLUDED_CUI_SOURCE_INC_ICONCDLG_HXX |