File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Rubberduck.VBEEditor/Application Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,18 +9,18 @@ public abstract class HostApplicationBase<TApplication> : SafeComWrapper<TApplic
9
9
where TApplication : class
10
10
{
11
11
protected HostApplicationBase ( string applicationName )
12
- : base ( ApplicationFomComReflection ( applicationName ) )
12
+ : base ( ApplicationFromComReflection ( applicationName ) )
13
13
{
14
14
ApplicationName = applicationName ;
15
15
}
16
16
17
17
protected HostApplicationBase ( IVBE vbe , string applicationName )
18
- : base ( ApplicationFomVbe ( vbe , applicationName ) )
18
+ : base ( ApplicationFromVbe ( vbe , applicationName ) )
19
19
{
20
20
ApplicationName = applicationName ;
21
21
}
22
22
23
- private static TApplication ApplicationFomComReflection ( string applicationName )
23
+ private static TApplication ApplicationFromComReflection ( string applicationName )
24
24
{
25
25
TApplication application ;
26
26
try
@@ -34,7 +34,7 @@ private static TApplication ApplicationFomComReflection(string applicationName)
34
34
return application ;
35
35
}
36
36
37
- private static TApplication ApplicationFomVbe ( IVBE vbe , string applicationName )
37
+ private static TApplication ApplicationFromVbe ( IVBE vbe , string applicationName )
38
38
{
39
39
TApplication application ;
40
40
try
You can’t perform that action at this time.
0 commit comments