qthighway/xqserviceipc/xqserviceipc/xqserviceipc_symbiansession.cpp
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 24 9d760f716ca8
equal deleted inserted replaced
1:2b40d63a9c3d 4:90517678cc4f
    96  @param aVersion version of the server
    96  @param aVersion version of the server
    97  @return KErrNone success, otherwise system error code
    97  @return KErrNone success, otherwise system error code
    98  */
    98  */
    99 TInt RServiceIPCSession::Connect(const TDesC& aServer, const TVersion& aVersion)
    99 TInt RServiceIPCSession::Connect(const TDesC& aServer, const TVersion& aVersion)
   100 {
   100 {
   101     XQSERVICE_DEBUG_PRINT("RServiceIPCSession::Connect");
   101     QString server = QString::fromUtf16(aServer.Ptr(), aServer.Length());
       
   102     XQSERVICE_DEBUG_PRINT("RServiceIPCSession::Connect %s", qPrintable(server));
   102     iVersion = aVersion;
   103     iVersion = aVersion;
   103     return CreateSession(aServer, aVersion, 1);
   104     return CreateSession(aServer, aVersion, 1);
   104 }
   105 }
   105 
   106 
   106 /*!
   107 /*!