contentstorage/cahandler/tapp/src/catapphandler.cpp
changeset 93 82b66994846c
parent 92 782e3408c2ab
child 96 5d243a69bdda
equal deleted inserted replaced
92:782e3408c2ab 93:82b66994846c
    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             }