]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.h
Angus insetindex patch + protect patch from Dekel
[lyx.git] / src / bufferlist.h
index fec67696c0bd3a5eb6d0f79f9131dbf4a5894480..f5155b370eb3a5262f56c6de0765a5979f4de5fd 100644 (file)
@@ -21,8 +21,6 @@
 #include "buffer.h"
 #include "debug.h"
 
-using std::vector;
-
 /** A class to hold all the buffers in a structure
   The point of this class is to hide from bufferlist what kind
   of structure the buffers are stored in. Should be no concern for
@@ -34,7 +32,7 @@ using std::vector;
 class BufferStorage {
 public:
        ///
-       typedef vector<Buffer *> Container;
+       typedef std::vector<Buffer *> Container;
        ///
        typedef Container::iterator iterator;
        ///
@@ -112,7 +110,7 @@ public:
        /// Make a new file (buffer) using a template
        Buffer * newFile(string const &, string);
        /// returns a vector with all the buffers filenames
-       vector<string> getFileNames() const;
+       std::vector<string> getFileNames() const;
 
        ///
        int unlockInset(UpdatableInset *);