From 6edcd0bf79b8f4fc20158d8345bae7b5d6917940 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Fri, 17 Jul 2015 23:30:23 -0400 Subject: [PATCH] Debugger: Build fix. --- .../debugger/user_interface/gui/team_window/VariablesView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp b/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp index df0c924650..a9ac19fec1 100644 --- a/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp @@ -1553,7 +1553,7 @@ VariablesView::VariableTableModel::GetToolTipForTablePath( tipData += pieceData; } tipData += "Editable: "; - tipData += error == B_OK && location->IsEditable() + tipData += error == B_OK && location->IsWritable() ? "Yes" : "No"; break; }