diff --git a/SConstruct b/SConstruct index 1f386efe..2bd87089 100644 --- a/SConstruct +++ b/SConstruct @@ -140,8 +140,7 @@ Examples/System/System.nsi Examples/nsDialogs/example.nsi Examples/nsDialogs/InstallOptions.nsi Examples/nsDialogs/welcome.nsi""") - + ['Examples/Modern UI/WelcomeFinish.nsi'] - + ['Examples/Modern UI/HeaderBitmap.nsi']) + + ['Examples/Modern UI/WelcomeFinish.nsi']) # version opts.Add(('VERSION', 'Version of NSIS', cvs_version)) diff --git a/Source/script.cpp b/Source/script.cpp index 787cc17d..4db99f51 100644 --- a/Source/script.cpp +++ b/Source/script.cpp @@ -2465,7 +2465,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line) } } else { char *szClass = winchar_toansi(dlgItem->szClass); - check = strcmp(szClass, "Static") == 0; + check = stricmp(szClass, "Static") == 0; delete [] szClass; }