qthighway/xqserviceutil/src/xqsharablefile.cpp
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 5 453da2cfceef
--- 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<const TUint16*>(fileName.utf16()));
+    TPtrC name( reinterpret_cast<const TUint16*>(symbianFileName.utf16()));
     RFile f;
     err = f.Open(mSharableFS, name, EFileShareReadersOnly);
     if (err != KErrNone)