1- using System ;
1+ using System ;
22using System . Collections . Generic ;
33using System . Diagnostics ;
44using System . Diagnostics . Contracts ;
@@ -420,7 +420,7 @@ protected int AddIcon(ViewInfo view, int x, int y, Image icon, int id, HotSpotTy
420420 /// <param name="x">The x coordinate.</param>
421421 /// <param name="y">The y coordinate.</param>
422422 /// <returns>The new x coordinate after drawing the icon.</returns>
423- protected int AddOpenClose ( ViewInfo view , int x , int y )
423+ protected int AddOpenCloseIcon ( ViewInfo view , int x , int y )
424424 {
425425 Contract . Requires ( view != null ) ;
426426 Contract . Requires ( view . Context != null ) ;
@@ -433,10 +433,10 @@ protected int AddOpenClose(ViewInfo view, int x, int y)
433433 return AddIcon ( view , x , y , LevelsOpen [ view . Level ] ? Icons . OpenCloseOpen : Icons . OpenCloseClosed , 0 , HotSpotType . OpenClose ) ;
434434 }
435435
436- /// <summary>Draws a type drop icon if the node is selected.</summary>
436+ /// <summary>Draws a context drop icon if the node is selected.</summary>
437437 /// <param name="view">The view information.</param>
438438 /// <param name="y">The y coordinate.</param>
439- protected void AddTypeDrop ( ViewInfo view , int y )
439+ protected void AddContextDropDownIcon ( ViewInfo view , int y )
440440 {
441441 Contract . Requires ( view != null ) ;
442442 Contract . Requires ( view . Context != null ) ;
@@ -455,7 +455,7 @@ protected void AddTypeDrop(ViewInfo view, int y)
455455 /// <summary>Draws a delete icon if the node is selected.</summary>
456456 /// <param name="view">The view information.</param>
457457 /// <param name="y">The y coordinate.</param>
458- protected void AddDelete ( ViewInfo view , int y )
458+ protected void AddDeleteIcon ( ViewInfo view , int y )
459459 {
460460 Contract . Requires ( view != null ) ;
461461 Contract . Requires ( view . Context != null ) ;
@@ -509,7 +509,7 @@ protected Size DrawHidden(ViewInfo view, int x, int y)
509509 /// <summary>Draws an error indicator if the used memory buffer is not valid.</summary>
510510 /// <param name="view">The view information.</param>
511511 /// <param name="y">The y coordinate.</param>
512- protected void DrawInvalidMemoryIndicator ( ViewInfo view , int y )
512+ protected void DrawInvalidMemoryIndicatorIcon ( ViewInfo view , int y )
513513 {
514514 if ( ! view . Memory . ContainsValidData )
515515 {
0 commit comments