filemanager/View/src/FileManagerDlgUtils.cpp
branchRCL_3
changeset 17 529f3bf5c2f1
parent 14 efe289f793e7
--- a/filemanager/View/src/FileManagerDlgUtils.cpp	Wed Jun 09 09:28:11 2010 +0300
+++ b/filemanager/View/src/FileManagerDlgUtils.cpp	Mon Jun 21 15:26:15 2010 +0300
@@ -630,9 +630,13 @@
         CFileManagerItemProperties& aProperties,
         const CFileManagerFeatureManager& aFeatureManager )
     {
-    CFileManagerInfoPopup* popup = CFileManagerInfoPopup::NewL(
-        aProperties, aFeatureManager );
-    popup->ExecuteLD();
+    CFileManagerInfoPopup* popup = NULL;
+    TRAPD ( err,  popup = CFileManagerInfoPopup::NewL(
+        aProperties, aFeatureManager ) );
+    if ( err == KErrNone )
+        {
+        popup->ExecuteLD();
+        }
     }
 
 // ----------------------------------------------------------------------------