contentstorage/cahandler/tapp/src/catapphandler.cpp
changeset 73 4bc7b118b3df
parent 66 32469d7d46ff
child 83 156f692b1687
equal deleted inserted replaced
66:32469d7d46ff 73:4bc7b118b3df
    68         TPtrC attribute;
    68         TPtrC attribute;
    69         innerEntry.FindAttribute(hsitemLaunchUri, attribute);
    69         innerEntry.FindAttribute(hsitemLaunchUri, attribute);
    70 
    70 
    71         // e.g. QUrl url ("application://101F7AE7?");
    71         // e.g. QUrl url ("application://101F7AE7?");
    72         QUrl url(QString::fromUtf16(attribute.Ptr(), attribute.Length()));
    72         QUrl url(QString::fromUtf16(attribute.Ptr(), attribute.Length()));
    73         QScopedPointer<XQAiwRequest> request(mAiwMgr->create(url, true));
    73         QScopedPointer<XQAiwRequest> request(mAiwMgr->create(url, false));
    74         if (!request.isNull()) {
    74         if (!request.isNull()) {
    75             bool res = request->send();
    75             bool res = request->send();
    76             if (!res) {
    76             if (!res) {
    77                 error = request->lastError();
    77                 error = request->lastError();
    78             }
    78             }