Rename member variable exceptionOutput=>mExceptionOutput

This commit is contained in:
Daniel Marjamäki 2019-07-15 18:11:11 +02:00
parent 4561229906
commit 876d8c9829
2 changed files with 6 additions and 6 deletions

View File

@ -76,7 +76,7 @@
#endif #endif
/*static*/ FILE* CppCheckExecutor::exceptionOutput = stdout; /*static*/ FILE* CppCheckExecutor::mExceptionOutput = stdout;
CppCheckExecutor::CppCheckExecutor() CppCheckExecutor::CppCheckExecutor()
: _settings(nullptr), latestProgressOutputTime(0), errorOutput(nullptr), errorlist(false) : _settings(nullptr), latestProgressOutputTime(0), errorOutput(nullptr), errorlist(false)
@ -1063,14 +1063,14 @@ void CppCheckExecutor::reportErr(const ErrorLogger::ErrorMessage &msg)
} }
} }
void CppCheckExecutor::setExceptionOutput(FILE* exception_output) void CppCheckExecutor::setExceptionOutput(FILE* exceptionOutput)
{ {
exceptionOutput=exception_output; mExceptionOutput = exceptionOutput;
} }
FILE* CppCheckExecutor::getExceptionOutput() FILE* CppCheckExecutor::getExceptionOutput()
{ {
return exceptionOutput; return mExceptionOutput;
} }
bool CppCheckExecutor::tryLoadLibrary(Library& destination, const char* basepath, const char* filename) bool CppCheckExecutor::tryLoadLibrary(Library& destination, const char* basepath, const char* filename)

View File

@ -94,7 +94,7 @@ public:
/** /**
* @param exception_output Output file * @param exception_output Output file
*/ */
static void setExceptionOutput(FILE* exception_output); static void setExceptionOutput(FILE* exceptionOutput);
/** /**
* @return file name to be used for output from exception handler. Has to be either "stdout" or "stderr". * @return file name to be used for output from exception handler. Has to be either "stdout" or "stderr".
*/ */
@ -180,7 +180,7 @@ private:
/** /**
* Output file name for exception handler * Output file name for exception handler
*/ */
static FILE* exceptionOutput; static FILE* mExceptionOutput;
/** /**
* Error output * Error output