]> git.lyx.org Git - lyx.git/blobdiff - src/output.C
minimal effort implementation of:
[lyx.git] / src / output.C
index 5c9b57f49a6a868d947a7cee87520add361e0916..a5a3db5ecee40589be6da8f12bceec369ab4926c 100644 (file)
@@ -21,7 +21,7 @@
 #include <fstream>
 
 using lyx::support::bformat;
-using lyx::support::MakeDisplayPath;
+using lyx::support::makeDisplayPath;
 
 using std::ofstream;
 using std::string;
@@ -30,7 +30,7 @@ bool openFileWrite(ofstream & ofs, string const & fname)
 {
        ofs.open(fname.c_str());
        if (!ofs) {
-               string const file = MakeDisplayPath(fname, 50);
+               string const file = makeDisplayPath(fname, 50);
                string text = bformat(_("Could not open the specified "
                                        "document\n%1$s."), file);
                Alert::error(_("Could not open file"), text);