diff -r ada7962b4308 -r b7bfdea70ca2 filemanager/src/fmbkupenginewrapper/private/win32/fmbkupengine_p.h --- a/filemanager/src/fmbkupenginewrapper/private/win32/fmbkupengine_p.h Mon May 03 12:24:39 2010 +0300 +++ b/filemanager/src/fmbkupenginewrapper/private/win32/fmbkupengine_p.h Fri Jun 25 17:08:34 2010 +0800 @@ -56,19 +56,25 @@ bool StartRestoreL( QList drivesAndOperationList ); void GetRestoreInfoArray( QList drivesAndOperationList, QList< FmRestoreInfo > &restoreInfoList, - const int aDrive = 0 ); + const QString& aDrive ); + void getBackupDriveList( QStringList &driveList ); private: int DriverNameToNumber( QString driverName ); QString NumberToDriverName( int driver ); - TBool HasMultipleBackupTargets(); +// TBool HasMultipleBackupTargets(); signals: void notifyPreparing( bool cancelable ); - void notifyStart( bool cancelable, int totalCount ); - void notifyUpdate( int count ); - void notifyFinish( int err ); - void notifyMemoryLow( int memoryValue, int &userError ); + void notifyStart( bool cancelable, int totalCount ); + void notifyUpdate( int count ); + void notifyFinish( int err ); + void notifyMemoryLow( int memoryValue, int &userError ); + + // win32 source code is used to simulator backup action. + // add this signal in win32 to avoid warning when run test case + // though it is not used in win32 source code currently + void notifyBackupFilesExist( bool &isContinue ); public slots: void onNotifyPreparing( bool cancelable );