Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/NRefactory.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Grunwald <daniel@danielgrunwald.de>2011-09-16 20:06:58 +0400
committerDaniel Grunwald <daniel@danielgrunwald.de>2011-09-16 20:07:22 +0400
commite4d1f545fdfe9d7060b037beebcf90f31963a22e (patch)
tree9306348324ce274b2c6f5312b9f9c95161e3606b /ICSharpCode.NRefactory.Demo
parentaf5ae57e898d3fbeb2e89c12ce322fb6377ee841 (diff)
Add CodeDomConvertVisitor.
Diffstat (limited to 'ICSharpCode.NRefactory.Demo')
-rw-r--r--ICSharpCode.NRefactory.Demo/CSDemo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ICSharpCode.NRefactory.Demo/CSDemo.cs b/ICSharpCode.NRefactory.Demo/CSDemo.cs
index bbbc856a..82dd4655 100644
--- a/ICSharpCode.NRefactory.Demo/CSDemo.cs
+++ b/ICSharpCode.NRefactory.Demo/CSDemo.cs
@@ -148,7 +148,7 @@ namespace ICSharpCode.NRefactory.Demo
void CSharpGenerateCodeButtonClick(object sender, EventArgs e)
{
StringWriter w = new StringWriter();
- OutputVisitor output = new OutputVisitor(w, new CSharpFormattingOptions());
+ CSharpOutputVisitor output = new CSharpOutputVisitor(w, new CSharpFormattingOptions());
compilationUnit.AcceptVisitor(output, null);
csharpCodeTextBox.Text = w.ToString();
}