diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-03-04 11:21:29 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-03-04 11:24:00 +0000 |
commit | bf48090e0a81c6490ee938eabaef4e791df85229 (patch) | |
tree | aba8974165f5b6927beddc1f3de877d2cd2636c8 /svx/inc | |
parent | 2cc80091f7da7ff874f2de9f0c738721fa041b76 (diff) |
discard explicit SetAccessibleRelationMemberOf when members of a true VclFrame
I think the old use of "SetAccessibleRelationMemberOf" is a kind of workaround
to show that those widgets are logically all children of a pseudo-frame in the
a11y view. Now that they are truly children of a real frame I think we don't
need them anymore.
If it turns out that being implicit children of a frame isn't sufficient for
a11y, then hopefully we don't need to manually insert them everywhere but
instead make one centralized change down in vcl to automatically present
children of frame as "AccessibleRelationMemberOf"s.
RID_SVXQBX_DELETE_HEADFOOT: This one is still in use, so I added it back
Change-Id: I00df4bd376ba21b7cdc2af87763f7c9ae015b70a
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/helpid.hrc | 2 | ||||
-rw-r--r-- | svx/inc/svx/dialogs.hrc | 2 | ||||
-rw-r--r-- | svx/inc/svx/hdft.hxx | 7 |
3 files changed, 0 insertions, 11 deletions
diff --git a/svx/inc/helpid.hrc b/svx/inc/helpid.hrc index a310c7969c8a..b1f1fdeb2273 100644 --- a/svx/inc/helpid.hrc +++ b/svx/inc/helpid.hrc @@ -72,8 +72,6 @@ #define HID_FONTWORK_TBI_STYLE_SLANTX "SVX_HID_FONTWORK_TBI_STYLE_SLANTX" #define HID_FONTWORK_TBI_STYLE_SLANTY "SVX_HID_FONTWORK_TBI_STYLE_SLANTY" #define HID_FONTWORK_TBI_STYLE_UPRIGHT "SVX_HID_FONTWORK_TBI_STYLE_UPRIGHT" -#define HID_FORMAT_FOOTER "SVX_HID_FORMAT_FOOTER" -#define HID_FORMAT_HEADER "SVX_HID_FORMAT_HEADER" // free #define HID_GALLERY_ICONVIEW "SVX_HID_GALLERY_ICONVIEW" #define HID_GALLERY_LISTVIEW "SVX_HID_GALLERY_LISTVIEW" diff --git a/svx/inc/svx/dialogs.hrc b/svx/inc/svx/dialogs.hrc index fa416239192d..d41157c46877 100644 --- a/svx/inc/svx/dialogs.hrc +++ b/svx/inc/svx/dialogs.hrc @@ -159,8 +159,6 @@ #define RID_SVXDLG_SEARCH (RID_SVX_START + 20) // ResId fuer die PageDialog -#define RID_SVXPAGE_FOOTER (RID_SVX_START + 26) -#define RID_SVXPAGE_HEADER (RID_SVX_START + 27) #define RID_SVXQBX_DELETE_HEADFOOT (RID_SVX_START + 28) // ResId's fuer Dialoge aus StarDraw diff --git a/svx/inc/svx/hdft.hxx b/svx/inc/svx/hdft.hxx index 57924c1aedee..bb1d2f507d3d 100644 --- a/svx/inc/svx/hdft.hxx +++ b/svx/inc/svx/hdft.hxx @@ -59,7 +59,6 @@ protected: SvxHFPage( Window* pParent, const SfxItemSet& rSet, sal_uInt16 nSetId ); - VclFrame* m_pFrm; FixedText* m_pPageLbl; CheckBox* m_pTurnOnBox; CheckBox* m_pCntSharedBox; @@ -77,12 +76,6 @@ protected: SvxPageWindow* m_pBspWin; PushButton* m_pBackgroundBtn; - FixedText* m_pFooterOn; - FixedText* m_pFooterLbl; - FixedText* m_pHeaderOn; - FixedText* m_pHeaderLbl; - FixedText* m_pMsg; - sal_uInt16 nId; SfxItemSet* pBBSet; sal_Bool bDisableQueryBox; |