]> git.lyx.org Git - lyx.git/blobdiff - src/support/path.h
fix typo that put too many include paths for most people
[lyx.git] / src / support / path.h
index 6081881062c7464f38861e3e88a2358cd976ac2c..7059b1a285d325c9def93a6388612889e6dd3582 100644 (file)
@@ -19,14 +19,14 @@ public:
        Path(string const & path)
                : popped_(false)
        {
-               if (!path.empty()) { 
+               if (!path.empty()) {
                        pushedDir_ = lyx::getcwd(); // GetCWD();
                        if (pushedDir_.empty() || lyx::chdir(path)) {
                                // should throw an exception
                                // throw DirChangeError();
-                               // The use of WriteFSAlert makes this
+                               // The use of Alert::err_alert makes this
                                // impossible to inline.
-                               //WriteFSAlert(_("Error: Could not change to directory: "), 
+                               //Alert::err_alert(_("Error: Could not change to directory: "),
                                //           path);
                        }
                } else {