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

This commit is contained in:
Kimmo Varis 2009-06-07 14:47:01 +03:00
commit c3072856df
4 changed files with 9260 additions and 3 deletions

9257
Changelog Normal file

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@
# Archive files are created in user's home directory.
# Tag to use
tag=1.32
tag=1.33
# Name of release
releasename=cppcheck-$tag

View File

@ -74,7 +74,7 @@ std::string CppCheck::parseFromArgs(int argc, const char* const argv[])
for (int i = 1; i < argc; i++)
{
if (strcmp(argv[i], "--version") == 0)
return "Cppcheck 1.32\n";
return "Cppcheck 1.33\n";
// Flag used for various purposes during debugging
if (strcmp(argv[i], "--debug") == 0)

View File

@ -19,7 +19,7 @@
#define MyAppName "cppcheck"
#define AppVersion "1.32"
#define AppVersion "1.33"
#define MyAppURL "http://cppcheck.wiki.sourceforge.net/"
#define MyAppExeName "cppcheck.exe"
#define QTGuiExe "gui.exe"