summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.h
diff options
context:
space:
mode:
authorFeRD (Frank Dana) <ferdnyc@gmail.com>2022-06-12 17:29:25 (GMT)
committerBrad King <brad.king@kitware.com>2022-06-13 13:05:24 (GMT)
commit98a10290a854a78cbe0a804a3d69313acd6f4339 (patch)
tree946c4f2444fb4be62d25906875a8e6517b1c1f86 /Source/cmSystemTools.h
parent7116712771538be9f093b6ae7f4ef5ce38fc3679 (diff)
downloadCMake-98a10290a854a78cbe0a804a3d69313acd6f4339.zip
CMake-98a10290a854a78cbe0a804a3d69313acd6f4339.tar.gz
CMake-98a10290a854a78cbe0a804a3d69313acd6f4339.tar.bz2
cmSystemTools: Fix 'ErrorOccurred' spelling
Rename the booleans 's_ErrorOccured' and 's_FatalErrorOccured' to 's_ErrorOccurred' and 's_FatalErrorOccurred', respectively. Rename the getters and setters to 'Get[Fatal]ErrorOccurred' and 'Set[Fatal]ErrorOccurred', and fix all uses across the codebase.
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r--Source/cmSystemTools.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h
index 4865a4b..5f7a5ec 100644
--- a/Source/cmSystemTools.h
+++ b/Source/cmSystemTools.h
@@ -77,28 +77,28 @@ public:
static bool GetInterruptFlag();
//! Return true if there was an error at any point.
- static bool GetErrorOccuredFlag()
+ static bool GetErrorOccurredFlag()
{
- return cmSystemTools::s_ErrorOccured ||
- cmSystemTools::s_FatalErrorOccured || GetInterruptFlag();
+ return cmSystemTools::s_ErrorOccurred ||
+ cmSystemTools::s_FatalErrorOccurred || GetInterruptFlag();
}
//! If this is set to true, cmake stops processing commands.
- static void SetFatalErrorOccured()
+ static void SetFatalErrorOccurred()
{
- cmSystemTools::s_FatalErrorOccured = true;
+ cmSystemTools::s_FatalErrorOccurred = true;
}
- static void SetErrorOccured() { cmSystemTools::s_ErrorOccured = true; }
+ static void SetErrorOccurred() { cmSystemTools::s_ErrorOccurred = true; }
//! Return true if there was an error at any point.
- static bool GetFatalErrorOccured()
+ static bool GetFatalErrorOccurred()
{
- return cmSystemTools::s_FatalErrorOccured || GetInterruptFlag();
+ return cmSystemTools::s_FatalErrorOccurred || GetInterruptFlag();
}
//! Set the error occurred flag and fatal error back to false
- static void ResetErrorOccuredFlag()
+ static void ResetErrorOccurredFlag()
{
- cmSystemTools::s_FatalErrorOccured = false;
- cmSystemTools::s_ErrorOccured = false;
+ cmSystemTools::s_FatalErrorOccurred = false;
+ cmSystemTools::s_ErrorOccurred = false;
}
//! Return true if the path is a framework
@@ -541,7 +541,7 @@ public:
private:
static bool s_ForceUnixPaths;
static bool s_RunCommandHideConsole;
- static bool s_ErrorOccured;
- static bool s_FatalErrorOccured;
+ static bool s_ErrorOccurred;
+ static bool s_FatalErrorOccurred;
static bool s_DisableRunCommandOutput;
};