hmm, seems --normalize doesn't catch tab vs. spaces in examples

svn path=/trunk/gtk-sharp/; revision=17599
This commit is contained in:
John Luke 2003-08-25 20:44:10 +00:00
parent 3de09c2018
commit 4fc7596db5

View File

@ -32,10 +32,10 @@ class TextViewSample
Gtk.TextView view; Gtk.TextView view;
Gtk.TextBuffer buffer; Gtk.TextBuffer buffer;
view = new Gtk.TextView (); view = new Gtk.TextView ();
buffer = view.Buffer; buffer = view.Buffer;
buffer.Text = "Hello, this is some text"; buffer.Text = "Hello, this is some text";
win.Add (view); win.Add (view);
win.ShowAll (); win.ShowAll ();