homescreenapp/stateplugins/hsapplibrarystateplugin/src/hsoperatorhandler_p.cpp
changeset 85 35368b604b28
parent 77 4b195f3bea29
child 90 3ac3aaebaee5
equal deleted inserted replaced
77:4b195f3bea29 85:35368b604b28
   145 {
   145 {
   146     QVariant variant = getVariantFromKey(
   146     QVariant variant = getVariantFromKey(
   147             crManager, OperatorStoreApplication, XQSettingsManager::TypeString);
   147             crManager, OperatorStoreApplication, XQSettingsManager::TypeString);
   148     if (!variant.isNull()) {
   148     if (!variant.isNull()) {
   149         CaEntry *operatorEntry = new CaEntry;
   149         CaEntry *operatorEntry = new CaEntry;
   150         operatorEntry->setEntryTypeName(applicationTypeName());
   150         operatorEntry->setEntryTypeName(Hs::applicationTypeName);
   151         operatorEntry->setAttribute(
   151         operatorEntry->setAttribute(
   152             applicationUidEntryKey(), variant.toString());
   152             Hs::applicationUidEntryKey, variant.toString());
   153 
   153 
   154         return operatorEntry;
   154         return operatorEntry;
   155     }
   155     }
   156     return NULL;
   156     return NULL;
   157 }
   157 }
   166 {
   166 {
   167     QVariant variant = getVariantFromKey(
   167     QVariant variant = getVariantFromKey(
   168             crManager, OperatorStoreURL, XQSettingsManager::TypeString);
   168             crManager, OperatorStoreURL, XQSettingsManager::TypeString);
   169     if (!variant.isNull()) {
   169     if (!variant.isNull()) {
   170         CaEntry *operatorEntry = new CaEntry;
   170         CaEntry *operatorEntry = new CaEntry;
   171         operatorEntry->setEntryTypeName(urlTypeName());
   171         operatorEntry->setEntryTypeName(Hs::urlTypeName);
   172         operatorEntry->setAttribute(urlEntryKey(), variant.toString());
   172         operatorEntry->setAttribute(Hs::urlEntryKey, variant.toString());
   173 
   173 
   174         return operatorEntry;
   174         return operatorEntry;
   175     }
   175     }
   176     return NULL;
   176     return NULL;
   177 }
   177 }