]> 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 2ff6f05f8d84430a7a42ea0fc3140ff045e72595..7059b1a285d325c9def93a6388612889e6dd3582 100644 (file)
 #endif
 
 ///
-class Path : public boost::noncopyable {
+class Path : boost::noncopyable {
 public:
        ///
        explicit
        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 {