diff -r 2b40d63a9c3d -r 90517678cc4f qthighway/xqserviceutil/src/xqsharablefile.cpp --- a/qthighway/xqserviceutil/src/xqsharablefile.cpp Fri Apr 16 15:51:22 2010 +0300 +++ b/qthighway/xqserviceutil/src/xqsharablefile.cpp Mon May 03 13:18:40 2010 +0300 @@ -91,7 +91,10 @@ bool XQSharableFile::open(const QString &fileName) { close(); // Close possibly existing old one - + + QString symbianFileName = fileName; + symbianFileName.replace("/", "\\"); + TInt err = mSharableFS.Connect(); if (err != KErrNone) { @@ -99,7 +102,7 @@ } mSharableFS.ShareProtected(); - TPtrC name( reinterpret_cast(fileName.utf16())); + TPtrC name( reinterpret_cast(symbianFileName.utf16())); RFile f; err = f.Open(mSharableFS, name, EFileShareReadersOnly); if (err != KErrNone)