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.
This commit is contained in:
Niklas Johansson 2011-11-07 16:51:27 +01:00 committed by Noel Power
parent a8cae44d7c
commit c69c088a11

View file

@ -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();
}