Fix building GUI with Visual Studio.

This commit is contained in:
Kimmo Varis 2009-05-28 10:22:30 +03:00
parent adb1ed4947
commit 3f3b1279da
1 changed files with 11 additions and 0 deletions

View File

@ -163,6 +163,17 @@ void FileLister::RecursiveAddFiles(std::vector<std::string> &filenames, const st
#endif
///////////////////////////////////////////////////////////////////////////////
////// This code is for Visual C++ and Qt ///////////////////////////
///////////////////////////////////////////////////////////////////////////////
#if defined(_MSC_VER) && defined(QT_CORE_LIB)
void FileLister::RecursiveAddFiles(std::vector<std::string> &filenames, const std::string &path, bool recursive)
{
//This method is not used by Qt build
}
#endif
///////////////////////////////////////////////////////////////////////////////
////// This code is for Borland C++ and Visual C++ ////////////////////////////
///////////////////////////////////////////////////////////////////////////////