]> git.lyx.org Git - lyx.git/blobdiff - src/minibuffer.h
Fix small bug in reading \set_color in lyxrc
[lyx.git] / src / minibuffer.h
index 91a7dd97ebfff5c672ec7c286e8038171f4ffd8d..34a92e59da3959304a75359d58437cedf2f77c00 100644 (file)
@@ -16,14 +16,9 @@ class LyXView;
 class MiniBuffer {
 public:
        ///
-       MiniBuffer(LyXView *o, FL_Coord x, FL_Coord y, FL_Coord h, FL_Coord w)
-               : owner(o)
-       {
-               text = _("Welcome to LyX!");
-               shows_no_match = true;
-               history_idx = history_cnt = 0;
-               add(FL_NORMAL_INPUT, x, y, h, w);
-       }
+       MiniBuffer(LyXView * o,
+                  FL_Coord x, FL_Coord y, FL_Coord h, FL_Coord w);
+
        ///
        bool shows_no_match;
        ///
@@ -83,7 +78,7 @@ private:
         void addHistory(string const &cmd) { 
                if (history_cnt == 0 || (history_cnt>0 && cmd!= history[(history_cnt-1) % MAX_HISTORY])) {
                    history[history_cnt % MAX_HISTORY] = cmd;
-                   history_cnt++;
+                   ++history_cnt;
                }
                history_idx = history_cnt;
        }