Skip to content

Commit 9146a79

Browse files
committed
Fix the constructor of PowerPointApp to actually use its argument.
1 parent 0a8fcdb commit 9146a79

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Rubberduck.VBEEditor/Application/PowerPointApp.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ public class PowerPointApp : HostApplicationBase<Microsoft.Office.Interop.PowerP
66
{
77
private readonly IVBE _vbe;
88

9-
public PowerPointApp(IVBE vbe) : base("PowerPoint") { }
9+
public PowerPointApp(IVBE vbe) : base(vbe, "PowerPoint")
10+
{
11+
_vbe = vbe;
12+
}
1013

1114
public override void Run(dynamic declaration)
1215
{

0 commit comments

Comments
 (0)