filemanager/src/fmbkupenginewrapper/private/win32/fmbkupengine_p.cpp
changeset 49 81668a704644
parent 25 b7bfdea70ca2
--- a/filemanager/src/fmbkupenginewrapper/private/win32/fmbkupengine_p.cpp	Thu Sep 30 16:33:59 2010 +0800
+++ b/filemanager/src/fmbkupenginewrapper/private/win32/fmbkupengine_p.cpp	Mon Oct 18 09:44:31 2010 +0800
@@ -81,8 +81,8 @@
     mError = FmErrNone;
 
     selection.clear();
-    FmRestoreSettings& rstSettings( *( q->RestoreSettingsL() ) );
-    rstSettings.GetSelectionL( selection );
+    FmRestoreSettings& rstSettings( *( q->RestoreSettings() ) );
+    rstSettings.GetSelection( selection );
     QSettings settings("Nokia", "FileManager");
     foreach( FmRestoreInfo restoreInfo, selection ) {
         switch( restoreInfo.content() )
@@ -135,11 +135,11 @@
 }
 
 //
-bool FmBkupEnginePrivate::StartRestoreL( QList<FmBkupDrivesAndOperation* > drivesAndOperationList )
+bool FmBkupEnginePrivate::startRestore( QList<FmBkupDrivesAndOperation* > drivesAndOperationList )
 {
     selection.clear();
-    FmRestoreSettings& rstSettings( *( q->RestoreSettingsL() ) );
-    rstSettings.GetSelectionL( selection );
+    FmRestoreSettings& rstSettings( *( q->RestoreSettings() ) );
+    rstSettings.GetSelection( selection );
 
     mError = mBkupThread->asyncRestore( drivesAndOperationList,selection );
     return ( mError == FmErrNone );