[Lldb-commits] [PATCH] D33347: Fix incorrect Status -> Error rename in IOHandler

Brian Gianforcaro via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu May 18 22:47:46 PDT 2017


bgianfo created this revision.

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.


Repository:
  rL LLVM

https://reviews.llvm.org/D33347

Files:
  source/Core/IOHandler.cpp


Index: source/Core/IOHandler.cpp
===================================================================
--- source/Core/IOHandler.cpp
+++ source/Core/IOHandler.cpp
@@ -4640,7 +4640,7 @@
     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(


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D33347.99523.patch
Type: text/x-patch
Size: 617 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20170519/f9ff2af8/attachment.bin>


More information about the lldb-commits mailing list