Merge branch 'master' of git@github.com:danmar/cppcheck

This commit is contained in:
Kimmo Varis 2009-03-09 20:04:03 +02:00
commit 62874b54ef
2 changed files with 15 additions and 3 deletions

View File

@ -84,7 +84,7 @@ CheckDialog::CheckDialog(QSettings &programSettings) :
mSecurity = AddCheckbox(layout, tr("Security"), tr("Check security"), false);
//Vcl
mVcl = AddCheckbox(layout, tr("Vcl"), tr("Check vcl"), false);
//mVcl = AddCheckbox(layout, tr("Vcl"), tr("Check vcl"), false);
@ -227,7 +227,7 @@ Settings CheckDialog::GetSettings()
result._xml = CheckStateToBool(mXml->checkState());
result._unusedFunctions = CheckStateToBool(mUnusedFunctions->checkState());
result._security = CheckStateToBool(mSecurity->checkState());
result._vcl = CheckStateToBool(mVcl->checkState());
//result._vcl = CheckStateToBool(mVcl->checkState());
result._jobs = mJobs->text().toInt();
return result;
}

View File

@ -32,8 +32,10 @@
#if defined(__BORLANDC__) || defined(_MSC_VER) || defined(__MINGW32__)
#include <windows.h>
#include <shlwapi.h>
#if !defined(QT_CORE_LIB)
#pragma comment(lib, "shlwapi.lib")
#endif
#endif
std::string FileLister::simplifyPath(const char *originalPath)
{
@ -150,12 +152,22 @@ void FileLister::RecursiveAddFiles(std::vector<std::string> &filenames, const st
}
#endif
///////////////////////////////////////////////////////////////////////////////
////// This code is for MinGW and Qt ///////////////////////////
///////////////////////////////////////////////////////////////////////////////
#if defined(__MINGW32__) && 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++ ////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#if defined(__BORLANDC__) || defined(_MSC_VER) || defined(__MINGW32__)
#if (defined(__BORLANDC__) || defined(_MSC_VER) || defined(__MINGW32__)) && !defined(QT_CORE_LIB)
void FileLister::RecursiveAddFiles(std::vector<std::string> &filenames, const std::string &path, bool recursive)
{