smf/smfcredentialmgr/smfcredmgrclient/smfcredmgrclientutil.cpp
changeset 18 013a02bf2bb0
parent 14 a469c0e6e7fb
child 24 1cee9f1b95e0
equal deleted inserted replaced
17:106a4bfcb866 18:013a02bf2bb0
    12  * Description:
    12  * Description:
    13  *  Header file for the utility to handle conversion between symbian and Qt 
    13  *  Header file for the utility to handle conversion between symbian and Qt 
    14  *  in Credential Manager.
    14  *  in Credential Manager.
    15  */
    15  */
    16 
    16 
    17 
    17 #include <QDebug>
    18 #include "smfcredmgrclientutil.h"
    18 #include "smfcredmgrclientutil.h"
    19 
    19 
    20 namespace smfcredmgrclientutil
    20 namespace smfcredmgrclientutil
    21 	{
    21 	{
    22 
    22 
   111 			{
   111 			{
   112 			TSmfAuthToken set;
   112 			TSmfAuthToken set;
   113 			
   113 			
   114 			QString KeyString(itr.key());
   114 			QString KeyString(itr.key());
   115 			QString ValueString(itr.value());
   115 			QString ValueString(itr.value());
       
   116 			qDebug()<<"Key name = "<<KeyString;
       
   117 			qDebug()<<"Key value = "<<ValueString;
   116 			
   118 			
   117 			set.iKey = qt_QString2HBufC(KeyString);
   119 			set.iKey = qt_QString2HBufC(KeyString);
   118 			set.iSecret = qt_QString2HBufC(ValueString);
   120 			set.iSecret = qt_QString2HBufC(ValueString);
   119 			//insert into the array
   121 			//insert into the array
   120 			aArray.Insert(set, arrayPos);
   122 			aArray.Insert(set, arrayPos);