mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Style.
This commit is contained in:
parent
d20cb73b87
commit
9d983562fe
@ -2026,8 +2026,9 @@ static bool import(GuiView * lv, FileName const & filename,
|
||||
string loader_format;
|
||||
vector<string> loaders = theConverters().loaders();
|
||||
if (find(loaders.begin(), loaders.end(), format) == loaders.end()) {
|
||||
for (vector<string>::const_iterator it = loaders.begin();
|
||||
it != loaders.end(); ++it) {
|
||||
vector<string>::const_iterator it = loaders.begin();
|
||||
vector<string>::const_iterator en = loaders.end();
|
||||
for (; it != en; ++it) {
|
||||
if (!theConverters().isReachable(format, *it))
|
||||
continue;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user