removed a compile warning non void return type.

This commit is contained in:
Klaas Freitag 2012-04-14 12:09:08 +02:00
parent 74abe2fa7a
commit 93b0f3e6ca

View file

@ -143,6 +143,8 @@ QStringList FolderWatcher::folders() const
{
#ifdef USE_WATCHER
return _inotify->directories();
#else
return QStringList();
#endif
}