devicediagnostics/diagplugins/diagbrowserplugin/src/diagbrowserpluginmodel.cpp
branchRCL_3
changeset 22 9360ca28b668
parent 0 3ce708148e4d
equal deleted inserted replaced
20:f2101057ffeb 22:9360ca28b668
   700 // From class CActive.
   700 // From class CActive.
   701 // Handles leaves in the active object's RunL function.
   701 // Handles leaves in the active object's RunL function.
   702 // ---------------------------------------------------------------------------
   702 // ---------------------------------------------------------------------------
   703 TInt CDiagBrowserPluginModel::RunError( TInt aError )
   703 TInt CDiagBrowserPluginModel::RunError( TInt aError )
   704     {
   704     {
   705     LOGSTRING2( "CDiagBrowserPluginModel::RunError( %d )", aError )
   705     LOGSTRING2( "CDiagBrowserPluginModel::RunError aError( %d )", aError )
   706 
   706 
   707     // Try to continue test execution by retrying the secondary connection.
   707     // Try to continue test execution by retrying the secondary connection.
   708     //TRAPD( error, RetryConnectionL() );
   708     //TRAPD( error, RetryConnectionL() );
   709     //return error;
   709     //return error;
   710     HandleTestEndL( CDiagResultsDatabaseItem::EFailed );
   710     TInt err(KErrNone);
       
   711     TRAP( err, HandleTestEndL( CDiagResultsDatabaseItem::EFailed ));
       
   712     LOGSTRING2( "CDiagBrowserPluginModel::RunError err( %d )", err )
   711     return KErrNone;
   713     return KErrNone;
   712     }
   714     }
   713 
   715 
   714 // ---------------------------------------------------------------------------
   716 // ---------------------------------------------------------------------------
   715 // From class CActive.
   717 // From class CActive.