Fix compilation on windows due to #defines leaking out of windows headers

This commit is contained in:
David Sansome 2011-11-28 19:13:01 +00:00
parent 5ee6064a50
commit 9306efef99
1 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,11 @@
#include <fileref.h>
#include <tag.h>
// This is defined by one of the windows headers that is included by taglib.
#ifdef RemoveDirectory
#undef RemoveDirectory
#endif
QStringList LibraryWatcher::sValidImages;
const char* LibraryWatcher::kSettingsGroup = "LibraryWatcher";