summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/IOHandler.cpp
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2017-05-22 14:13:38 +0000
committerPavel Labath <labath@google.com>2017-05-22 14:13:38 +0000
commit6bb7e21f10e401e6d7165990ea2db2a2cfefa160 (patch)
tree4f92ecfa24eab2ce10623320bb93472d97dd5bb4 /lldb/source/Core/IOHandler.cpp
parent1e034c3f228122beb2bf7b32ba4bba667068760d (diff)
downloadbcm5719-llvm-6bb7e21f10e401e6d7165990ea2db2a2cfefa160.tar.gz
bcm5719-llvm-6bb7e21f10e401e6d7165990ea2db2a2cfefa160.zip
Fix incorrect Status -> Error rename in IOHandler
Change 302872 was a massive rename of the Error class to Status. The change included an incorrect rename of the "Status" window in the LLDB GUI from "Status to "Error". This patch undoes this incorrect rename and restores the status window's correct name. Differential Revision: https://reviews.llvm.org/D33241 Patch by Brian Gianforcaro. llvm-svn: 303553
Diffstat (limited to 'lldb/source/Core/IOHandler.cpp')
-rw-r--r--lldb/source/Core/IOHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/IOHandler.cpp b/lldb/source/Core/IOHandler.cpp
index e5fe490991f..3cb1ffab3a0 100644
--- a/lldb/source/Core/IOHandler.cpp
+++ b/lldb/source/Core/IOHandler.cpp
@@ -4640,7 +4640,7 @@ void IOHandlerCursesGUI::Activate() {
WindowSP threads_window_sp(
main_window_sp->CreateSubWindow("Threads", threads_bounds, false));
WindowSP status_window_sp(
- main_window_sp->CreateSubWindow("Error", status_bounds, false));
+ main_window_sp->CreateSubWindow("Status", status_bounds, false));
status_window_sp->SetCanBeActive(
false); // Don't let the status bar become the active window
main_window_sp->SetDelegate(
OpenPOWER on IntegriCloud