]> git.lyx.org Git - lyx.git/blobdiff - src/support/path.C
Create a grfx::Loader class and so move large chunks of code out of
[lyx.git] / src / support / path.C
index fba75b46be4f437a3617eab56e125c48f923c22c..b30bc244f3aa886602a65390b0767358b000ac6b 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * \file path.C
+ * Copyright 1995-2002 the LyX Team
+ * Read the file COPYING
+ *
+ * \author unknown
+ */
+
 #include <config.h>
 
 #ifdef __GNUG__
@@ -11,22 +19,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_)) {
                // 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;
 }
-