cui/source/dialogs/hyphen.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c69c088a117857521efc6aaaa19bb53baee087ca
Author: Niklas Johansson <niklas@niklas-VirtualBox.(none)>
Date:   Mon Nov 7 16:51:27 2011 +0100

    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.

diff --git a/cui/source/dialogs/hyphen.cxx b/cui/source/dialogs/hyphen.cxx
index 1b9b63b..da10e83 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();
 }
 
 
_______________________________________________
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to