Index: sources/gui/GuiView.cpp =================================================================== diff -u -r2216ac6ac7f77437a7c29ac8b4043be01bc4609e -r61f16c988a159401c92730b4cbfca5085c77222f --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 2216ac6ac7f77437a7c29ac8b4043be01bc4609e) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 61f16c988a159401c92730b4cbfca5085c77222f) @@ -16,7 +16,7 @@ // Project #include "GuiView.h" #include "GuiController.h" -#include "DriveWatcher.h" +#include "DeviceController.h" // namespace using namespace Gui; @@ -63,8 +63,8 @@ this , SLOT( onSDCardStateChange(bool,bool))); /// TEST: Test the space on GUI, not sure if we keep it. - 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))); connect(&_GuiController, SIGNAL(didExport()), this , SLOT( onExport()));