videocollection/hgmyvideos/src/vcxhgmyvideoscategorymodelhandler.cpp
branchRCL_3
changeset 16 67eb01668b0e
parent 15 8f0df5c82986
child 18 baf439b22ddd
--- a/videocollection/hgmyvideos/src/vcxhgmyvideoscategorymodelhandler.cpp	Tue May 25 12:44:54 2010 +0300
+++ b/videocollection/hgmyvideos/src/vcxhgmyvideoscategorymodelhandler.cpp	Wed Jun 09 09:44:23 2010 +0300
@@ -1125,22 +1125,20 @@
     TBuf<KMyVideosTitleUrlMaxLength> urlString;
     TInt uidInt( 0 ) ;
     
-    // Try to get web link URL first.
+    // Try to get URL.
     TInt error = iModel.GetMyVideosCustomizationString( urlKey, urlString );
     if ( error == KErrNone && urlString.Size() > 0 )
         {
         aUrl = urlString;
         aItemType = TVcxHgMyVideosCategoryItemTypeUrl;
         }
-    else 
+
+    // Try to fetch application UID.
+    error = iModel.GetMyVideosCustomizationInt( uidKey, uidInt );
+    if ( error == KErrNone && uidInt != 0 )
         {
-        // If URL is not found try to fetch application UID.
-        error = iModel.GetMyVideosCustomizationInt( uidKey, uidInt );
-        if ( error == KErrNone && uidInt != 0 )
-            {
-            aUid = TUid::Uid( uidInt );
-            aItemType = TVcxHgMyVideosCategoryItemTypeUid;
-            }
+        aUid = TUid::Uid( uidInt );
+        aItemType = TVcxHgMyVideosCategoryItemTypeUid;
         }
     }