2005-09-02 Ben Maurer <bmaurer@ximian.com>

* main.cs: Use my new nodestore helper api


svn path=/trunk/msdn-browse/; revision=49372
This commit is contained in:
Ben Maurer 2005-09-02 21:31:34 +00:00
Родитель 7442ec5e64
Коммит 0a4e28371e
2 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,7 @@
2005-09-02 Ben Maurer <bmaurer@ximian.com>
* main.cs: Use my new nodestore helper api
2005-08-19 Ben Maurer <bmaurer@novell.com>
* main.cs: Show the use of whidbey and winfx msdns. However, they

Просмотреть файл

@ -38,10 +38,10 @@ class MsdnView : Window {
};
view.NodeSelection.Changed += delegate (object o, EventArgs args) {
ITreeNode [] s = view.NodeSelection.SelectedNodes;
if (s.Length == 0)
TreeNode n = (TreeNode) view.NodeSelection.SelectedNode;
if (n == null)
return;
TreeNode n = (TreeNode) s [0];
//
// Fool msdn's code that tries to detect if it
// is in a frame