The branch, master, has been updated. - Log -----------------------------------------------------------------
commit 9d983562fe5876189a0da4208ee1bd40e0c90f7a Author: Richard Heck <[email protected]> Date: Wed May 23 08:53:14 2012 -0400 Style. diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index f6c6a93..ca63632 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -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; ----------------------------------------------------------------------- Summary of changes: src/frontends/qt4/GuiView.cpp | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- The LyX Source Repository
