]> git.lyx.org Git - lyx.git/blobdiff - src/lastfiles.C
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / lastfiles.C
index 3ad8b9fdf557156a6c5b132d4109cb4371541f5d..d53206221975b11dcc12033aadf5c5eb1f449669 100644 (file)
@@ -4,7 +4,7 @@
  *           LyX, The Document Processor
  *      
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-1999 The LyX Team.
+ *           Copyright 1995-2000 The LyX Team.
  *
  * ====================================================== */
 
 
 #include <fstream>
 #include <algorithm>
+
+#include "support/FileInfo.h"
+#include "lastfiles.h"
+#include "debug.h"
+
 using std::ifstream;
+using std::getline;
 using std::ofstream;
 using std::copy;
 using std::ostream_iterator;
-
 using std::find;
-
-#include "support/FileInfo.h"
-#include "lastfiles.h"
-#include "debug.h"
+using std::endl;
 
 LastFiles::LastFiles(string const & filename, bool st, unsigned int num)
        : dostat(st)
@@ -72,21 +74,8 @@ void LastFiles::writeFile(string const & filename) const
 {
        ofstream ofs(filename.c_str());
        if (ofs) {
-#if 0
-               for (Files::const_iterator cit = files.begin();
-                    cit != files.end();
-                    ++cit) {
-                       ofs << (*cit) << '\n';
-               }
-#else
-               // Ok, ok. It is not required to do it this way...but it
-               // is kindo nice and shows the versiality of iterators and
-               // algorithms. I'll leave this in, and if I get reports
-               // about compilations errors I take it out again before
-               // 1.1.4. (Lgb)
                copy(files.begin(), files.end(),
                     ostream_iterator<string>(ofs, "\n"));
-#endif
        } else
                lyxerr << "LyX: Warning: unable to save LastFiles: "
                       << filename << endl;
@@ -105,7 +94,7 @@ void LastFiles::newFile(string const & file)
 }
 
 
-string LastFiles::operator[](unsigned int i) const
+string const LastFiles::operator[](unsigned int i) const
 {
        if (i < files.size())
                return files[i];