]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtextclasslist.h
A couple of minor bug fixes and cleanups
[lyx.git] / src / lyxtextclasslist.h
index 086567074578932a47d143eaef3fb074859594b9..a5aa7cedb98ffd7b768aeb8691a40afbf13d936a 100644 (file)
@@ -1,9 +1,9 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
@@ -42,18 +42,14 @@ public:
        ///
        const_iterator end() const { return classlist.end(); }
 
-       /** Gets textclass number from name.
-           Returns -1 if textclass name does not exist
-       */
+       /// Gets textclass number from name, -1 if textclass name does not exist
        std::pair<bool, lyx::textclass_type> const
        NumberOfClass(string const & textclass) const;
 
        ///
        LyXTextClass const & operator[](lyx::textclass_type textclass) const;
 
-       /** Read textclass list.
-           Returns false if this fails
-       */
+       /// Read textclass list.  Returns false if this fails.
        bool Read();
 private:
        ///
@@ -62,7 +58,7 @@ private:
        void Add(LyXTextClass const &);
 };
 
-/// 
+///
 extern LyXTextClassList textclasslist;
 
 #endif