diff options
author | Ivan Timofeev <timofeev.i.s@gmail.com> | 2012-12-05 20:37:37 +0400 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2012-12-05 20:50:01 +0400 |
commit | 0849f7317907d899157f506b235f445b449bcbd6 (patch) | |
tree | b0da6250cdea950673455f3d5264830e488314b2 /svx | |
parent | f995e0f7bbfc52cdfbef92b6c9d9c427a34a68e7 (diff) |
findbar: show up/down buttons when searching for selected text
1. Type and select some text in Writer
2. Ctrl+F
Result: the text appears in the combobox, but the up/down buttons are still
disabled.
Change-Id: I9cd9f0bad52967a9934577c9bb743085b108fa94
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/tbxctrls/tbunosearchcontrollers.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svx/source/tbxctrls/tbunosearchcontrollers.cxx b/svx/source/tbxctrls/tbunosearchcontrollers.cxx index b701740abe60..c4bfc5cd17e9 100644 --- a/svx/source/tbxctrls/tbunosearchcontrollers.cxx +++ b/svx/source/tbxctrls/tbunosearchcontrollers.cxx @@ -120,6 +120,7 @@ void FindTextFieldControl::SetTextToSelected_Impl() if ( aString.getLength() != 0 ) { SetText( aString ); + GetModifyHdl().Call(this); // FIXME why SetText doesn't trigger this? } } |