diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-05-16 19:47:58 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-05-16 19:47:58 +0000 | 
| commit | b76161e41bc2c07cd47f9c61f875d1be95e26d10 (patch) | |
| tree | d03c19ce10dec6419f97df1d4dac9d47eb88982f /source/Core/IOHandler.cpp | |
| parent | 8b4000f13b303cc154136abc74c55670673e2a96 (diff) | |
Notes
Diffstat (limited to 'source/Core/IOHandler.cpp')
| -rw-r--r-- | source/Core/IOHandler.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/source/Core/IOHandler.cpp b/source/Core/IOHandler.cpp index b5dd0bd8a25f..e5fe490991f9 100644 --- a/source/Core/IOHandler.cpp +++ b/source/Core/IOHandler.cpp @@ -27,7 +27,7 @@  #include "lldb/Core/StreamFile.h"  #include "lldb/Host/File.h"            // for File  #include "lldb/Host/Predicate.h"       // for Predicate, ::eBroad... -#include "lldb/Utility/Error.h"        // for Error +#include "lldb/Utility/Status.h"       // for Status  #include "lldb/Utility/StreamString.h" // for StreamString  #include "lldb/Utility/StringList.h"   // for StringList  #include "lldb/lldb-forward.h"         // for StreamFileSP @@ -515,7 +515,7 @@ bool IOHandlerEditline::GetLines(StringList &lines, bool &interrupted) {    } else {  #endif      bool done = false; -    Error error; +    Status error;      while (!done) {        // Show line numbers if we are asked to @@ -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("Status", status_bounds, false)); +        main_window_sp->CreateSubWindow("Error", status_bounds, false));      status_window_sp->SetCanBeActive(          false); // Don't let the status bar become the active window      main_window_sp->SetDelegate( | 
