mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 03:36:39 +00:00
Return the right params[embed] from GuiBibtex.cpp, for safety reasons
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24054 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
30663a8019
commit
534b81a5c1
@ -372,8 +372,12 @@ void GuiBibtex::applyView()
|
|||||||
QString item = databaseLW->item(i)->text();
|
QString item = databaseLW->item(i)->text();
|
||||||
docstring bibfile = qstring_to_ucs4(item);
|
docstring bibfile = qstring_to_ucs4(item);
|
||||||
dbs += bibfile;
|
dbs += bibfile;
|
||||||
if (databaseLW->item(i)->checkState() == Qt::Checked)
|
if (databaseLW->item(i)->checkState() == Qt::Checked) {
|
||||||
emb += "embedded";
|
FileName bibfilepath = InsetBibtex::getBibTeXPath(bibfile, buf);
|
||||||
|
string inzipName = EmbeddedFile(bibfilepath.absFilename(),
|
||||||
|
buf.filePath()).inzipName();
|
||||||
|
emb += from_utf8(inzipName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
params_["bibfiles"] = dbs;
|
params_["bibfiles"] = dbs;
|
||||||
|
Loading…
Reference in New Issue
Block a user