mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
(Juergen Spitzmueller): enable the citation dialog to read multiple BibTeX
databases. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4044 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
175bf75322
commit
0b8be78131
@ -1,3 +1,8 @@
|
||||
2002-04-23 Juergen Spitzmueller <j.spitzmueller@gmx.de>
|
||||
|
||||
* FormBibtex.C: Do not use a blank after the comma for multiple
|
||||
bib-files (which is not read in correctly).
|
||||
|
||||
2002-04-19 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* FormParagraph.C (changedParagraph): don't check for p == par_ as
|
||||
|
@ -85,7 +85,7 @@ ButtonPolicy::SMInput FormBibtex::input(FL_OBJECT * ob, long)
|
||||
if (!out_name.empty()) {
|
||||
// add the database to any existing ones
|
||||
if (!in_name.empty())
|
||||
out_name = in_name + ", " + out_name;
|
||||
out_name = in_name + ',' + out_name;
|
||||
|
||||
fl_freeze_form(form());
|
||||
fl_set_input(dialog_->input_database, out_name.c_str());
|
||||
@ -157,7 +157,7 @@ string const unique_and_no_extensions(string const & str_in)
|
||||
*it = ChangeExtension(*it, "");
|
||||
}
|
||||
eliminate_duplicates(dbase);
|
||||
return subst(getStringFromVector(dbase),",",", ");
|
||||
return getStringFromVector(dbase);
|
||||
}
|
||||
|
||||
} // namespace anon
|
||||
|
Loading…
Reference in New Issue
Block a user