]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.h
fix "make dist" target
[lyx.git] / src / bufferlist.h
index efd76c486d23582fe72f881d808ca1caf713f2fd..93bd63e5dbd757cbd86b8b85b30f020e7b5a606e 100644 (file)
@@ -30,7 +30,7 @@
   This class should ideally be enclosed inside class BufferList, but that
   gave me an "internal gcc error".
   */
-class BufferStorage : public boost::noncopyable {
+class BufferStorage : boost::noncopyable {
 public:
        ///
        typedef std::vector<Buffer *> Container;
@@ -68,7 +68,7 @@ private:
 
 /** The class govern all open buffers.
  */
-class BufferList : public boost::noncopyable {
+class BufferList : boost::noncopyable {
 public:
        ///
        BufferList();
@@ -108,7 +108,7 @@ public:
        Buffer * readFile(string const &, bool ro);
 
        /// Make a new file (buffer) using a template
-       Buffer * newFile(string const &, string, bool isNamed=false);
+       Buffer * newFile(string const &, string, bool isNamed = false);
        /// returns a vector with all the buffers filenames
        std::vector<string> const getFileNames() const;