diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-05-04 08:32:04 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-05-04 08:32:04 +0200 |
commit | e4d61b3c556189bf0733ab6e7bedaf975427a35a (patch) | |
tree | 1f53701d380d26e2d4c45db9cfaa50b5e0052ac9 | |
parent | 20778b037c688759a4dc46acb8aeb66c9d1290cc (diff) |
Resolves: fdo#78217 selected text should be copied in "Replace"
Change-Id: I548d46ec46ff07528bd1f8ed6be09463354826d8
-rw-r--r-- | cui/source/tabpages/autocdlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx index db8330cb1b8f..15d202fc6f7e 100644 --- a/cui/source/tabpages/autocdlg.cxx +++ b/cui/source/tabpages/autocdlg.cxx @@ -1063,7 +1063,7 @@ void OfaAutocorrReplacePage::RefillReplaceBox(bool bFromReset, { bHasSelectionText = true; const OUString sSelection( pViewShell->GetSelectionText() ); - m_pReplaceED->SetText( sSelection ); + m_pShortED->SetText( sSelection ); m_pTextOnlyCB->Check( !bSWriter ); m_pTextOnlyCB->Enable( bSWriter && !sSelection.isEmpty() ); } |