]> git.lyx.org Git - lyx.git/blobdiff - src/BackStack.h
more changes, read the Changelog
[lyx.git] / src / BackStack.h
index fbc9aef2ec940f0f31de2edecccdce710e956d97..152ca7355a16fe4d4c47c2c90166eb06700dd76f 100644 (file)
@@ -4,7 +4,7 @@
  * 
  *           LyX, The Document Processor
  *      
- *         Copyright (C) 1997-1999 The LyX Team.
+ *         Copyright 1997-2000 The LyX Team.
  *
  * ====================================================== */
 
@@ -12,7 +12,6 @@
 #define BACK_STACK_H
 
 #include <stack>
-using std::stack;
 
 #include "LString.h"
 
@@ -24,12 +23,9 @@ class BackStack {
 private:
        ///
        struct BackStackItem {
+               ///
                BackStackItem(string const & f, int xx, int yy)
                        : fname(f), x(xx), y(yy) {}
-               ///
-               //void set(string f, int xx, int yy) {
-               //      fname = f;  x = xx;  y = yy;
-               //}
                /// Filename
                string fname;
                /// Cursor x-position
@@ -57,7 +53,7 @@ public:
        }
 private:
        ///
-       stack<BackStackItem> stakk;
+       std::stack<BackStackItem> stakk;
 };
 
 #endif