bluetoothengine/bteng/btrfsplugin/src/btrfsplugin.cpp
branchRCL_3
changeset 14 f7fbeaeb166a
parent 0 f63038272f30
--- a/bluetoothengine/bteng/btrfsplugin/src/btrfsplugin.cpp	Wed Mar 31 21:51:05 2010 +0300
+++ b/bluetoothengine/bteng/btrfsplugin/src/btrfsplugin.cpp	Wed Apr 14 16:09:00 2010 +0300
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
+* Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of "Eclipse Public License v1.0"
@@ -77,10 +77,14 @@
     TRACE_FUNC_EXIT
     }
 
-void CBTRFSPlugin::GetScriptL( const TRfsReason /*aType*/, TDes& aPath )
+void CBTRFSPlugin::GetScriptL( const TRfsReason aType, TDes& aPath )
     {
     TRACE_FUNC_ENTRY
-    aPath.Copy( KScriptPath);
+    ASSERT(aType == EDeepRfs || aType == ENormalRfs); // ECOM default data specifies only these two types
+    if(aType == EDeepRfs)
+        {
+        aPath.Copy(KScriptPath);
+        }
     TRACE_FUNC_EXIT
     }