qthighway/xqserviceipc/xqserviceipc/xqserviceipc_apasymbiansession.cpp
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 24 9d760f716ca8
equal deleted inserted replaced
1:2b40d63a9c3d 4:90517678cc4f
   100     @return KErrNone success, otherwise system error code
   100     @return KErrNone success, otherwise system error code
   101 */
   101 */
   102 TInt RApaIPCSession::Connect(const TDesC& aServer, 
   102 TInt RApaIPCSession::Connect(const TDesC& aServer, 
   103                                  const TVersion& aVersion)
   103                                  const TVersion& aVersion)
   104 {
   104 {
   105     XQSERVICE_DEBUG_PRINT("RApaIPCSession::Connect");
   105     QString server = QString::fromUtf16(aServer.Ptr(), aServer.Length());
       
   106     XQSERVICE_DEBUG_PRINT("RApaIPCSession::Connect %s", qPrintable(server));
   106     iVersion = aVersion;
   107     iVersion = aVersion;
   107     return CreateSession(aServer, aVersion, 10);
   108     return CreateSession(aServer, aVersion, 10);
   108 }
   109 }
   109 
   110 
   110 /*!
   111 /*!