]> git.lyx.org Git - lyx.git/blobdiff - src/minibuffer.h
add missing writeNormal() methods to some insets
[lyx.git] / src / minibuffer.h
index b71126c5d05b67937f7c2573d0d68a09f9a942e7..14eb5221f0a3e02d64b840ae257968814dfe1cd8 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();
        ///
@@ -68,6 +68,8 @@ private:
        ///
        void stored_set(string const &);
        ///
+       void set_input(string const &);
+       ///
        void init();
        ///
        string stored_input;
@@ -88,11 +90,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_;
 };