We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02e3cc3 commit e93a994Copy full SHA for e93a994
RetailCoder.VBE/Root/RubberduckModule.cs
@@ -133,7 +133,7 @@ public override void Load()
133
.WhenInjectedInto<ToDoExplorerCommand>()
134
.InSingletonScope();
135
136
- BindDockableToolwindows(assemblies);
+ BindDockableToolwindows();
137
BindCommandsToCodeExplorer();
138
ConfigureRubberduckMenu();
139
ConfigureCodePaneContextMenu();
@@ -144,9 +144,9 @@ public override void Load()
144
BindWindowsHooks();
145
}
146
147
- private void BindDockableToolwindows(IEnumerable<Assembly> assemblies)
+ private void BindDockableToolwindows()
148
{
149
- Kernel.Bind(t => t.From(assemblies)
+ Kernel.Bind(t => t.FromThisAssembly()
150
.SelectAllClasses()
151
.InheritedFrom<IDockableUserControl>()
152
.BindToSelf()
0 commit comments