diff options
author | Niklas Johansson <niklas@niklas-VirtualBox.(none)> | 2011-11-07 16:51:27 +0100 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2011-11-18 10:08:45 +0000 |
commit | c69c088a117857521efc6aaaa19bb53baee087ca (patch) | |
tree | 212ec49a188f46fcec31ad44d09a5ac15b030463 /cui | |
parent | a8cae44d7c93f0a2d8f0f4c4334f5ad757063f05 (diff) |
Fixed for bug 40505 UI: HYPHENATION Right/Left arrow key reversed (keyboard)
SvxHyphenWordDialog::SelLeft() and SvxHyphenWordDialog::SelRight() was
reversed witch caused the arrowkeys to be reversed in the hyphenation
dialog.
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/hyphen.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/hyphen.cxx b/cui/source/dialogs/hyphen.cxx index 1b9b63bf8231..da10e8331038 100644 --- a/cui/source/dialogs/hyphen.cxx +++ b/cui/source/dialogs/hyphen.cxx @@ -640,13 +640,13 @@ void SvxHyphenWordDialog::SetWindowTitle( LanguageType nLang ) void SvxHyphenWordDialog::SelLeft() { - m_pImpl->SelRight_Impl(); + m_pImpl->SelLeft_Impl(); } void SvxHyphenWordDialog::SelRight() { - m_pImpl->SelLeft_Impl(); + m_pImpl->SelRight_Impl(); } |