]> git.lyx.org Git - features.git/commitdiff
Fix indentation
authorJuergen Spitzmueller <spitz@lyx.org>
Sun, 26 Jun 2016 12:26:35 +0000 (14:26 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Sun, 26 Jun 2016 12:26:35 +0000 (14:26 +0200)
src/ModuleList.cpp

index 89b2aa9309f61bf499d12f058d1fbe437ccbcd09..51a942776610d4cd131db854deb3f886b0b267d9 100644 (file)
@@ -264,10 +264,10 @@ LyXModule * ModuleList::operator[](string const & str)
        LyXModuleList::iterator it = modlist_.begin();
        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