mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
Fix indentation.
This commit is contained in:
parent
46a16b0ca7
commit
68487d5197
@ -262,12 +262,13 @@ LyXModule const * ModuleList::operator[](string const & str) const
|
||||
LyXModule * ModuleList::operator[](string const & str)
|
||||
{
|
||||
LyXModuleList::iterator it = modlist_.begin();
|
||||
for (; it != modlist_.end(); ++it)
|
||||
for (; it != modlist_.end(); ++it) {
|
||||
if (it->getID() == str) {
|
||||
LyXModule & mod = *it;
|
||||
return &mod;
|
||||
LyXModule & mod = *it;
|
||||
return &mod;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
} // namespace lyx
|
||||
|
Loading…
Reference in New Issue
Block a user