]> git.lyx.org Git - lyx.git/blobdiff - src/IndicesList.cpp
Disable CheckTeX while buffer is processed
[lyx.git] / src / IndicesList.cpp
index 9f22373f3ab906f55af1b731fc27842bad8d8b13..e974cebc9da6d059b2bedce9a8ff600c9da00092 100644 (file)
@@ -30,7 +30,9 @@ namespace {
 class IndexNamesEqual : public std::unary_function<Index, bool>
 {
 public:
-       IndexNamesEqual(docstring const & name) : name_(name) {}
+       IndexNamesEqual(docstring const & name)
+               : name_(name)
+       {}
 
        bool operator()(Index const & index) const
        {
@@ -44,7 +46,9 @@ private:
 class IndexHasShortcut : public std::unary_function<Index, bool>
 {
 public:
-       IndexHasShortcut(docstring const & shortcut) : shortc_(shortcut) {}
+       IndexHasShortcut(docstring const & shortcut)
+               : shortc_(shortcut)
+       {}
 
        bool operator()(Index const & index) const
        {
@@ -54,7 +58,7 @@ private:
        docstring shortc_;
 };
 
-}
+} // namespace
 
 
 /////////////////////////////////////////////////////////////////////