Browse Source

Fixed ServerToolTreeView after slight mix up with dev and test versions

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1913 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Dickon Field 20 years ago
parent
commit
ca46f24bbf
  1. 3
      src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/ServerToolTreeView.cs

3
src/AddIns/Misc/SharpServerTools/ServerBrowserTool/Src/Forms/ServerToolTreeView.cs

@ -8,6 +8,7 @@
using System; using System;
using System.Windows.Forms; using System.Windows.Forms;
using System.Collections; using System.Collections;
using System.Collections.Generic;
using ICSharpCode.Core; using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Gui; using ICSharpCode.SharpDevelop.Gui;
@ -42,7 +43,7 @@ namespace SharpServerTools.Forms
if (s != null) { if (s != null) {
s.RebuildRequiredEvent += new RebuildRequiredEventHandler(RebuildRequiredNotify); s.RebuildRequiredEvent += new RebuildRequiredEventHandler(RebuildRequiredNotify);
} }
this.Nodes.Add(dbExplorerNode); this.Nodes.Add(treeNode);
} }
// Type dbExplorerType = Type.GetType("SharpDbTools.Forms.DatabaseExplorerTreeNode, SharpDbTools"); // Type dbExplorerType = Type.GetType("SharpDbTools.Forms.DatabaseExplorerTreeNode, SharpDbTools");

Loading…
Cancel
Save