--- a/qthighway/examples/appmgrclient/src/appmgrclient.cpp Mon May 03 13:18:40 2010 +0300
+++ b/qthighway/examples/appmgrclient/src/appmgrclient.cpp Fri May 14 16:41:33 2010 +0300
@@ -561,8 +561,15 @@
{
qDebug() << mAppName << " test5 START";
- // E0022E73 == ServiceApp
- QUrl uri(XQURI_SCHEME_ACTIVITY + "://E0022E73?" + XQURI_KEY_ACTIVITY_NAME + "=emailView&view=myview");
+ QString str("e0022e70");
+ uint ui = str.toUInt();
+ qDebug() << mAppName << " toUInt value=" << ui;
+ bool b=false;
+ ui=str.toUInt(&b,16);
+ qDebug() << mAppName << " toUInt status=" << b << ",value=" << ui;
+
+
+ QUrl uri(XQURI_SCHEME_ACTIVITY + "://E0022E70?" + XQURI_KEY_ACTIVITY_NAME + "=MainView&key1=data1&key2=data2");
qDebug() << mAppName << " Uri=" << uri.toString();
qDebug() << mAppName << " isValid=" << uri.isValid();
qDebug() << mAppName << " Uri authority=" << uri.authority();