diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-20 20:59:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-20 21:00:15 +0100 |
commit | e62764108a1832e746f68768c29eaa90606903a7 (patch) | |
tree | 67cd933ff1ed51a4cf5c38765f4f52911cd28040 /accessibility | |
parent | dc795cbd2dcb50e555945a91925616c7b3e58ee9 (diff) |
hmm, that's not right
Change-Id: Id714a54b08127c594c108c824bb0dedd74bb5c06
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/source/standard/vclxaccessiblebox.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/accessibility/source/standard/vclxaccessiblebox.cxx b/accessibility/source/standard/vclxaccessiblebox.cxx index d75487577ecd..117fc732d674 100644 --- a/accessibility/source/standard/vclxaccessiblebox.cxx +++ b/accessibility/source/standard/vclxaccessiblebox.cxx @@ -463,9 +463,9 @@ OUString SAL_CALL VCLXAccessibleBox::getAccessibleActionDescription (sal_Int32 n throw ::com::sun::star::lang::IndexOutOfBoundsException(); if (m_bIsDropDownBox) - TK_RES_STRING( RID_STR_ACC_ACTION_TOGGLEPOPUP); - else - ::rtl::OUString(); + return TK_RES_STRING(RID_STR_ACC_ACTION_TOGGLEPOPUP); + + return OUString(); } Reference< XAccessibleKeyBinding > VCLXAccessibleBox::getAccessibleActionKeyBinding( sal_Int32 nIndex ) |