diff options
author | Oz Linden <oz@lindenlab.com> | 2013-04-02 15:01:25 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-04-02 15:01:25 -0400 |
commit | e20099155378fd10f7997e36ae8ef150c8c5ad91 (patch) | |
tree | fa92a3a27384d86eb36d9843a729acf8e60f3633 /indra/newview/llappviewerwin32.cpp | |
parent | ce0dbbd8a543a32e033eb15888259151ca113539 (diff) |
change initLogging virtual functions to void (returns were ignored anyway)
Diffstat (limited to 'indra/newview/llappviewerwin32.cpp')
-rw-r--r-- | indra/newview/llappviewerwin32.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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() |