]> git.lyx.org Git - lyx.git/blobdiff - src/buffer_funcs.cpp
cleanups: split Paragraph::Private::simpleTeXSpecialChars() in two. Remove two or...
[lyx.git] / src / buffer_funcs.cpp
index 5ce299e12fb9bc2fbc016f1c011c4e4961727e7c..9800c8d615ca59d2e5880e8038adbbd04c66fc0a 100644 (file)
@@ -53,7 +53,6 @@
 #include "support/lyxlib.h"
 
 #include <boost/bind.hpp>
-#include <boost/filesystem/operations.hpp>
 
 using std::min;
 using std::string;
@@ -73,7 +72,6 @@ using support::onlyPath;
 using support::unlink;
 
 namespace Alert = frontend::Alert;
-namespace fs = boost::filesystem;
 
 namespace {
 
@@ -82,7 +80,7 @@ bool readFile(Buffer * const b, FileName const & s)
        BOOST_ASSERT(b);
 
        // File information about normal file
-       if (!fs::exists(s.toFilesystemEncoding())) {
+       if (!s.exists()) {
                docstring const file = makeDisplayPath(s.absFilename(), 50);
                docstring text = bformat(_("The specified document\n%1$s"
                                                     "\ncould not be read."), file);
@@ -93,10 +91,7 @@ bool readFile(Buffer * const b, FileName const & s)
        // Check if emergency save file exists and is newer.
        FileName const e(s.absFilename() + ".emergency");
 
-       if (fs::exists(e.toFilesystemEncoding()) &&
-           fs::exists(s.toFilesystemEncoding()) &&
-           fs::last_write_time(e.toFilesystemEncoding()) > fs::last_write_time(s.toFilesystemEncoding()))
-       {
+       if (e.exists() && s.exists() && e.lastModified() > s.lastModified()) {
                docstring const file = makeDisplayPath(s.absFilename(), 20);
                docstring const text =
                        bformat(_("An emergency save of the document "
@@ -120,10 +115,7 @@ bool readFile(Buffer * const b, FileName const & s)
        // Now check if autosave file is newer.
        FileName const a(onlyPath(s.absFilename()) + '#' + onlyFilename(s.absFilename()) + '#');
 
-       if (fs::exists(a.toFilesystemEncoding()) &&
-           fs::exists(s.toFilesystemEncoding()) &&
-           fs::last_write_time(a.toFilesystemEncoding()) > fs::last_write_time(s.toFilesystemEncoding()))
-       {
+       if (a.exists() && s.exists() && a.lastModified() > s.lastModified()) {
                docstring const file = makeDisplayPath(s.absFilename(), 20);
                docstring const text =
                        bformat(_("The backup of the document "
@@ -157,10 +149,10 @@ bool loadLyXFile(Buffer * b, FileName const & s)
 {
        BOOST_ASSERT(b);
 
-       if (fs::is_readable(s.toFilesystemEncoding())) {
+       if (s.isReadable()) {
                if (readFile(b, s)) {
                        b->lyxvc().file_found_hook(s);
-                       if (!fs::is_writable(s.toFilesystemEncoding()))
+                       if (!s.isWritable())
                                b->setReadonly(true);
                        return true;
                }
@@ -217,7 +209,7 @@ Buffer * checkAndLoadLyXFile(FileName const & filename)
                        return 0;
        }
 
-       if (isFileReadable(filename)) {
+       if (filename.isReadable()) {
                Buffer * b = theBufferList().newBuffer(filename.absFilename());
                if (!lyx::loadLyXFile(b, filename)) {
                        theBufferList().release(b);