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:
parent
a8cae44d7c
commit
c69c088a11
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue