]> git.lyx.org Git - lyx.git/blobdiff - src/minibuffer.h
fix "make dist" target
[lyx.git] / src / minibuffer.h
index b71126c5d05b67937f7c2573d0d68a09f9a942e7..eb75794ecfc4406682ae06344d17c43758772e8c 100644 (file)
@@ -44,8 +44,8 @@ public:
            emitted.
        */
        void getString(State space,
-                      vector<string> const & completion,
-                      vector<string> & history);
+                      std::vector<string> const & completion,
+                      std::vector<string> & history);
        ///
        void redraw();
        ///
@@ -88,11 +88,11 @@ private:
        ///
        FL_OBJECT * the_buffer;
        ///
-       vector<string> completion_;
+       std::vector<string> completion_;
        ///
-       vector<string> * history_;
+       std::vector<string> * history_;
        ///
-       vector<string>::iterator hist_iter;
+       std::vector<string>::iterator hist_iter;
        ///
        State state_;
 };