Index: sources/storage/Logger.cpp =================================================================== diff -u -r376859852f4d1a07263c44524aec347db29e0133 -r61f16c988a159401c92730b4cbfca5085c77222f --- sources/storage/Logger.cpp (.../Logger.cpp) (revision 376859852f4d1a07263c44524aec347db29e0133) +++ sources/storage/Logger.cpp (.../Logger.cpp) (revision 61f16c988a159401c92730b4cbfca5085c77222f) @@ -24,7 +24,7 @@ #include // Project -#include "DriveWatcher.h" +#include "DeviceController.h" #include "Threads.h" #include "StorageGlobals.h" #include "MainTimer.h" @@ -114,8 +114,8 @@ connect(&_removeLogsWatcher, SIGNAL(finished ()), this , SLOT(onRemoveLogs())); - connect(&_DriveWatcher, SIGNAL( didSDCardSpaceChange(bool, qint64, qint64, quint8)), - this , SLOT( onSDCardSpaceChange(bool, qint64, qint64, quint8))); + connect(&_DeviceController, SIGNAL( didSDCardSpaceChange(bool, qint64, qint64, quint8)), + this , SLOT( onSDCardSpaceChange(bool, qint64, qint64, quint8))); } /*! @@ -166,7 +166,7 @@ void Logger::checkLogPath() { setLogBasePath(); // try to use /media/sd_card on device - // coco begin validated: It can only happen if the file system is readonly for any reason. + // coco begin validated: It can only happen if the file system is read-only for any reason. // it has been tested and works perfectly fine in normal run. if (! setLogPath()) { // check and create log folders & if unsuccessful then // coco end