Squash a bug spotted by Udo M��ller in the XForms find & replace dialog.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@10349 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2005-07-22 16:52:04 +00:00
parent f40fbc05ab
commit effca152ba
3 changed files with 28 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2005-07-22 Angus Leeming <leeming@lyx.org>
* FormSearch.C (input): do not trim the find and replace strings.
2005-07-04 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* FormToc.C: consider gui name, not type, when trying to set the

View File

@ -15,7 +15,6 @@
#include "FormSearch.h"
#include "forms/form_search.h"
#include "Tooltips.h"
#include "xforms_helpers.h"
#include FORMS_H_LOCATION
@ -65,10 +64,24 @@ void FormSearch::update()
}
namespace {
string const getUntrimmedString(FL_OBJECT * ob)
{
lyx::Assert(ob->objclass == FL_INPUT);
char const * const tmp = fl_get_input(ob);
return tmp ? tmp : string();
}
} // namespace anon
ButtonPolicy::SMInput FormSearch::input(FL_OBJECT * ob, long)
{
if (ob == dialog_->button_findnext) {
controller().find(getString(dialog_->input_search),
controller().find(getUntrimmedString(dialog_->input_search),
fl_get_button(dialog_->check_casesensitive),
fl_get_button(dialog_->check_matchword),
!fl_get_button(dialog_->check_searchbackwards));
@ -76,8 +89,8 @@ ButtonPolicy::SMInput FormSearch::input(FL_OBJECT * ob, long)
} else if (ob == dialog_->button_replace || ob == dialog_->button_replaceall) {
bool const all = (ob == dialog_->button_replaceall);
controller().replace(getString(dialog_->input_search),
getString(dialog_->input_replace),
controller().replace(getUntrimmedString(dialog_->input_search),
getUntrimmedString(dialog_->input_replace),
fl_get_button(dialog_->check_casesensitive),
fl_get_button(dialog_->check_matchword),
all);

View File

@ -37,6 +37,9 @@ What's new
- The Return key is no longer bound to the Goto button in the reference
dialog. [Qt only].
- Do not trim spaces from either end of the find and replace strings in
the Edit->Find & Replace... dialog. [XForms only].
* Configuration/Installation:
- compile without STL compatibilty support, since some systems do that