]> git.lyx.org Git - lyx.git/blobdiff - src/support/path.C
another safety belt
[lyx.git] / src / support / path.C
index 7752dccb11fda76377264ba3802057b9f45f9310..37a44ae31af8ac59a44c56bc00462b0170cec380 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file path.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #ifdef __GNUG__
@@ -11,22 +21,14 @@ int Path::pop()
        if (popped_) {
                // should throw an exception
                // throw logical_error();
-               // The use of WriteFSAlerrt makes this impossible
-               // to inline.
-               //WriteFSAlert(_("Error: Dir already popped: "),
-               //           pushedDir_);
                return 0;
        }
-       if (lyx::chdir(pushedDir_.c_str())) {
+
+       if (lyx::chdir(pushedDir_)) {
                // should throw an exception
                // throw DirChangeError();
-               // The use of WriteFSAlert makes this impossible
-               // to inline.
-               //WriteFSAlert(
-               //      _("Error: Could not change to directory: "), 
-               //      pushedDir_);
        }
        popped_ = true;
+
        return 0;
 }
-