Browse Source

changed visibility of ctor of AbstractInlineRefactorDialog to protected

pull/1/head
Siegfried Pammer 15 years ago
parent
commit
2171d88a91
  1. 6
      src/AddIns/Misc/SharpRefactoring/Project/Src/Gui/AbstractInlineRefactorDialog.cs

6
src/AddIns/Misc/SharpRefactoring/Project/Src/Gui/AbstractInlineRefactorDialog.cs

@ -7,13 +7,9 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Media;
using ICSharpCode.AvalonEdit.Document;
using ICSharpCode.AvalonEdit.Snippets; using ICSharpCode.AvalonEdit.Snippets;
using ICSharpCode.Core; using ICSharpCode.Core;
using ICSharpCode.Core.Presentation; using ICSharpCode.Core.Presentation;
@ -35,7 +31,7 @@ namespace SharpRefactoring.Gui
public IInlineUIElement Element { get; set; } public IInlineUIElement Element { get; set; }
public AbstractInlineRefactorDialog(InsertionContext context, ITextEditor editor, ITextAnchor anchor) protected AbstractInlineRefactorDialog(InsertionContext context, ITextEditor editor, ITextAnchor anchor)
{ {
this.anchor = anchor; this.anchor = anchor;
this.editor = editor; this.editor = editor;

Loading…
Cancel
Save