diff -r cbb1bfb7ebfb -r edd273b3192a mmappcomponents/harvester/server/src/mpxharvesterengine.cpp --- a/mmappcomponents/harvester/server/src/mpxharvesterengine.cpp Fri May 14 16:21:14 2010 +0300 +++ b/mmappcomponents/harvester/server/src/mpxharvesterengine.cpp Thu May 27 13:19:19 2010 +0300 @@ -35,7 +35,7 @@ #include "mpxharvesterengine.h" #include "mpxfsformatmonitor.h" #include "mpxmediaremovalmonitor.h" -#include "mpxusbeventhandler.h" +#include "mpxconnectioneventhandler.h" #include "mpxharvesterfilehandler.h" #include "mpxharvesterengineobserver.h" #include "mpxhvsmsg.h" @@ -60,7 +60,7 @@ delete iFormatMonitor; delete iMediaRemovalMonitor; - delete iUSBMonitor; + delete iConnectionMonitor; delete iFileHandler; iFsSession.Close(); @@ -101,8 +101,8 @@ iMediaRemovalMonitor = CMPXMediaRemovalMonitor::NewL( removableDrive, iFsSession, *this ); - // USB Event monitor - iUSBMonitor = CMPXUsbEventHandler::NewL( *this ); + // Connection Event monitor + iConnectionMonitor = CMPXConnectionEventHandler::NewL( *this ); // File handler to handle file related events @@ -426,7 +426,7 @@ // wont be able to open the db anyways. // iFormatMonitor->PollStatus(); - iUSBMonitor->PollStatus(); + iConnectionMonitor->PollStatus(); } // ---------------------------------------------------------------------------