diff options
| -rw-r--r-- | indra/newview/llappviewerlinux.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/llappviewerlinux.h | 2 | ||||
| -rw-r--r-- | indra/newview/llappviewerwin32.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/llappviewerwin32.h | 2 | 
4 files changed, 6 insertions, 6 deletions
| diff --git a/indra/newview/llappviewerlinux.cpp b/indra/newview/llappviewerlinux.cpp index 8695652168..5f98fd0a34 100644 --- a/indra/newview/llappviewerlinux.cpp +++ b/indra/newview/llappviewerlinux.cpp @@ -440,7 +440,7 @@ bool LLAppViewerLinux::beingDebugged()  #endif  } -bool LLAppViewerLinux::initLogging() +void LLAppViewerLinux::initLogging()  {  	// Remove the last stack trace, if any  	// This file is no longer created, since the move to Google Breakpad @@ -449,7 +449,7 @@ bool LLAppViewerLinux::initLogging()  		gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"stack_trace.log");  	LLFile::remove(old_stack_file); -	return LLAppViewer::initLogging(); +	LLAppViewer::initLogging();  }  bool LLAppViewerLinux::initParseCommandLine(LLCommandLineParser& clp) diff --git a/indra/newview/llappviewerlinux.h b/indra/newview/llappviewerlinux.h index 58e5160180..b30977acb3 100644 --- a/indra/newview/llappviewerlinux.h +++ b/indra/newview/llappviewerlinux.h @@ -63,7 +63,7 @@ protected:  	virtual bool restoreErrorTrap();  	virtual void handleCrashReporting(bool reportFreeze); -	virtual bool initLogging(); +	virtual void initLogging();  	virtual bool initParseCommandLine(LLCommandLineParser& clp);  	virtual bool initSLURLHandler(); diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 8326be433e..786ceb453c 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -509,9 +509,9 @@ bool LLAppViewerWin32::cleanup()  	return result;  } -bool LLAppViewerWin32::initLogging() +void LLAppViewerWin32::initLogging()  { -	return LLAppViewer::initLogging(); +	LLAppViewer::initLogging();  }  void LLAppViewerWin32::initConsole() diff --git a/indra/newview/llappviewerwin32.h b/indra/newview/llappviewerwin32.h index 67594aea48..d95174dd1d 100644 --- a/indra/newview/llappviewerwin32.h +++ b/indra/newview/llappviewerwin32.h @@ -44,7 +44,7 @@ public:  	virtual bool cleanup();  protected: -	virtual bool initLogging(); // Override to clean stack_trace info. +	virtual void initLogging(); // Override to clean stack_trace info.  	virtual void initConsole(); // Initialize OS level debugging console.  	virtual bool initHardwareTest(); // Win32 uses DX9 to test hardware.  	virtual bool initParseCommandLine(LLCommandLineParser& clp); | 
