From 1db26b451a945ea61465277d7db5c004c2afdede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Srbeck=C3=BD?= Date: Wed, 23 Jan 2008 18:45:27 +0000 Subject: [PATCH] Change "Private members" to "Non-Public members" git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2915 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../Project/Src/TreeModel/ChildNodesOfObject.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/TreeModel/ChildNodesOfObject.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/TreeModel/ChildNodesOfObject.cs index 23e19074df..0b687a344d 100644 --- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/TreeModel/ChildNodesOfObject.cs +++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/TreeModel/ChildNodesOfObject.cs @@ -71,7 +71,7 @@ namespace Debugger.AddIn.TreeModel this.targetObject = targetObject; this.shownType = shownType; - this.Name = StringParser.Parse("${res:MainWindow.Windows.Debug.LocalVariables.PrivateMembers}"); + this.Name = StringParser.Parse("${res:MainWindow.Windows.Debug.LocalVariables.NonPublicMembers}"); this.ChildNodes = GetChildNodes(); } @@ -122,7 +122,7 @@ namespace Debugger.AddIn.TreeModel this.targetObject = targetObject; this.shownType = shownType; - this.Name = StringParser.Parse("${res:MainWindow.Windows.Debug.LocalVariables.PrivateStaticMembers}"); + this.Name = StringParser.Parse("${res:MainWindow.Windows.Debug.LocalVariables.NonPublicStaticMembers}"); this.ChildNodes = GetChildNodes(); }