From: Vincent van Ravesteijn Date: Tue, 12 May 2009 20:16:43 +0000 (+0000) Subject: Compile fix for r29647. X-Git-Tag: 2.0.0~6591 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=501349b4aedfaf65064a37de2144d73489435d5b;p=features.git Compile fix for r29647. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29648 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/FileName.cpp b/src/support/FileName.cpp index cc0d675d37..2a1815ec5b 100644 --- a/src/support/FileName.cpp +++ b/src/support/FileName.cpp @@ -213,7 +213,7 @@ string FileName::realPath() const void FileName::set(string const & name) { d->fi.setFile(toqstr(name)); - d->name = d->fi.absoluteFilePath(); + d->name = fromqstr(d->fi.absoluteFilePath()); //LYXERR(Debug::FILES, "FileName::set(" << name << ')'); LASSERT(empty() || isAbsolute(d->name), /**/); }