vmbx/vmbxengine/src/vmbxvoipengine.cpp
changeset 19 e44a8c097b15
parent 12 ae8abd0db65c
child 32 1f002146abb4
equal deleted inserted replaced
15:d7fc66ccd6fb 19:e44a8c097b15
     1 /*
     1 /*
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     2 * Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
   164 // ----------------------------------------------------------------------------
   164 // ----------------------------------------------------------------------------
   165 //  CVmbxVoIpEngine::CheckConfiguration()
   165 //  CVmbxVoIpEngine::CheckConfiguration()
   166 // ----------------------------------------------------------------------------
   166 // ----------------------------------------------------------------------------
   167 //
   167 //
   168 TBool CVmbxVoIpEngine::CheckConfiguration( 
   168 TBool CVmbxVoIpEngine::CheckConfiguration( 
   169         const TVoiceMailboxParams& /*aParams*/, const TInt aFlags )
   169         const TVoiceMailboxParams& aParams, const TInt aFlags )
   170     {
   170     {
   171     VMBLOGSTRING( "VMBX: CVmbxVoIpEngine::CheckConfiguration: =>" );
   171     VMBLOGSTRING( "VMBX: CVmbxVoIpEngine::CheckConfiguration: =>" );
   172     TBool result( ETrue );
   172     TBool result( EFalse );
   173     if ( EVmbxChangeNbrNotAllowedOnUi & aFlags )
   173     result = CVmbxEngineBase::CheckConfiguration(aParams, aFlags);
   174         {
       
   175         result = EFalse;
       
   176         }
       
   177     VMBLOGSTRING2( "VMBX: CVmbxVoIpEngine::CheckConfiguration: result%I <=",
   174     VMBLOGSTRING2( "VMBX: CVmbxVoIpEngine::CheckConfiguration: result%I <=",
   178      result );
   175      result );
   179     return result;
   176     return result;
   180     }
   177     }
   181 
   178