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>2012-07-30 22:22:43 +0400
committerDaniel Grunwald <daniel@danielgrunwald.de>2012-07-30 22:22:43 +0400
commit273178a141eaa6f5f65615767a2df570a67bca46 (patch)
tree3b3d4a81a9b7e430967ac9cccf09b1be099fc0b3 /ICSharpCode.NRefactory.GtkDemo
parentcc37a7179d5450ca4f995a37b94972e66ed8493b (diff)
Rename CompilationUnit to SyntaxTree.
Diffstat (limited to 'ICSharpCode.NRefactory.GtkDemo')
-rw-r--r--ICSharpCode.NRefactory.GtkDemo/MainWindow.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ICSharpCode.NRefactory.GtkDemo/MainWindow.cs b/ICSharpCode.NRefactory.GtkDemo/MainWindow.cs
index 81b85edb..0b2743c0 100644
--- a/ICSharpCode.NRefactory.GtkDemo/MainWindow.cs
+++ b/ICSharpCode.NRefactory.GtkDemo/MainWindow.cs
@@ -46,7 +46,7 @@ namespace ICSharpCode.NRefactory.GtkDemo
TreeStore store = new TreeStore (typeof (string), typeof (string), typeof (AstNode), typeof (Pixbuf));
Dictionary<AstNode, TreeIter> iterDict = new Dictionary<AstNode, TreeIter> ();
// TextEditor editor = new TextEditor ();
- CompilationUnit unit;
+ SyntaxTree unit;
Pixbuf comment = new Pixbuf (typeof (MainWindow).Assembly, "comment.png");
Pixbuf classPixbuf = new Pixbuf (typeof (MainWindow).Assembly, "class.png");
@@ -129,7 +129,7 @@ namespace ICSharpCode.NRefactory.GtkDemo
}
- public void ShowUnit (CompilationUnit unit, CSharpAstResolver visitor)
+ public void ShowUnit (SyntaxTree unit, CSharpAstResolver visitor)
{
this.unit = unit;
store.Clear ();