* convert dir to internal path

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16187 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Edwin Leuven 2006-12-05 22:36:31 +00:00
parent ca55737398
commit fd44f28cae

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "support/lyxlib.h"
#include "support/os.h"
#include <boost/scoped_array.hpp>
@ -27,6 +28,7 @@ namespace lyx {
#endif
using boost::scoped_array;
using support::os::internal_path;
using std::string;
@ -64,7 +66,7 @@ string const lyx::support::getcwd()
string result;
if (err)
result = tbuf.get();
return result;
return internal_path(result);
}