mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
Squash a bug spotted by Udo M��ller in the XForms find & replace dialog.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10348 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
85eed78238
commit
792636617d
@ -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-20 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
|
||||
|
||||
* FormDocument.C:
|
||||
|
@ -15,7 +15,6 @@
|
||||
#include "forms/form_search.h"
|
||||
|
||||
#include "Tooltips.h"
|
||||
#include "xforms_helpers.h"
|
||||
#include "xformsBC.h"
|
||||
|
||||
#include "lyx_forms.h"
|
||||
@ -71,10 +70,24 @@ void FormSearch::update()
|
||||
}
|
||||
|
||||
|
||||
namespace {
|
||||
|
||||
string const getUntrimmedString(FL_OBJECT * ob)
|
||||
{
|
||||
BOOST_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));
|
||||
@ -82,8 +95,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),
|
||||
!fl_get_button(dialog_->check_searchbackwards),
|
||||
|
Loading…
Reference in New Issue
Block a user