]> git.lyx.org Git - lyx.git/blobdiff - src/support/StrPool.h
fix typo that put too many include paths for most people
[lyx.git] / src / support / StrPool.h
index 62c1814cabbaa10e8d4f3a9346f9c26ec7b42fb8..622db935412c35163ca02746fbed9827c85c658d 100644 (file)
@@ -1,9 +1,9 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 2000-2001 Jean-Marc Lasgouttes
  *
  * ======================================================*/
 ///
 class StrPool {
 public:
-        /// delete all the strings that have been allocated by add()
-        ~StrPool();
-        /// Make a copy of the string, and remember it in the pool
-        char const * add(string const & str);
-        
+       /// delete all the strings that have been allocated by add()
+       ~StrPool();
+       /// Make a copy of the string, and remember it in the pool
+       char const * add(string const & str);
+
 private:
        ///
        typedef std::vector<char const *> Pool;
        ///
-        Pool pool_;
+       Pool pool_;
 };
 
 //extern StrPool strPool;