mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
whitespace
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37987 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5b2b94fe95
commit
30d9ea948b
@ -2702,7 +2702,8 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc, string const & name) c
|
||||
format->viewer() != cit->viewer() ||
|
||||
format->editor() != cit->editor() ||
|
||||
format->documentFormat() != cit->documentFormat() ||
|
||||
format->vectorFormat() != cit->vectorFormat()) {
|
||||
format->vectorFormat() != cit->vectorFormat() ||
|
||||
format->inExportMenu() != cit->inExportMenu()) {
|
||||
os << "\\format \"" << cit->name() << "\" \""
|
||||
<< cit->extension() << "\" \""
|
||||
<< cit->prettyname() << "\" \""
|
||||
@ -2714,6 +2715,9 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc, string const & name) c
|
||||
flags.push_back("document");
|
||||
if (cit->vectorFormat())
|
||||
flags.push_back("vector");
|
||||
if (cit->inExportMenu())
|
||||
flags.push_back("menu=export");
|
||||
|
||||
os << getStringFromVector(flags);
|
||||
os << "\"\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user