Index: sources/storage/DriveWatcher.h =================================================================== diff -u -rb5238b7e7b9973a54a0402f4d6d609989a76629f -r00d9bb06ec2bad14f6dc2db678b750c244f694ef --- sources/storage/DriveWatcher.h (.../DriveWatcher.h) (revision b5238b7e7b9973a54a0402f4d6d609989a76629f) +++ sources/storage/DriveWatcher.h (.../DriveWatcher.h) (revision 00d9bb06ec2bad14f6dc2db678b750c244f694ef) @@ -18,7 +18,7 @@ // Project #include "main.h" -#include "threads.h" +#include "Threads.h" // Define #define _DriveWatcher Storage::DriveWatcher::I() @@ -53,7 +53,7 @@ bool _init = false; // Singleton -SINGLETON(DriveWatcher) +SINGLETON(DriveWatcher); public slots: bool init(); @@ -111,12 +111,12 @@ /*! * \brief didSDCardStateChange - * \details If sdcard state changes like removed or is not present this signal will emit. + * \details If SDCard state changes like removed or is not present this signal will emit. */ void didSDCardStateChange(bool vIsReady, bool vIsReadOnly); private slots: - // ----- usb + // ----- USB void usbCheck(); bool usbMount (const QString &vDevice); @@ -126,7 +126,7 @@ void onUSBDriveUmount(); - // ----- sdcard + // ----- SDCard void sdcardSpaceCheck(); }; }