Skip to content

Commit 75573ab

Browse files
committed
Fix up the initialize calls in the modules that needs to initialize the ComMessagePumper
1 parent 9fd54fb commit 75573ab

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

RetailCoder.VBE/API/VBA/ParserState.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public sealed class ParserState : IParserState, IDisposable
5656
public ParserState()
5757
{
5858
UiDispatcher.Initialize();
59-
UiSynchronizer.Initialize();
59+
ComMessagePumper.Initialize();
6060
}
6161

6262
public void Initialize(Microsoft.Vbe.Interop.VBE vbe)

RetailCoder.VBE/App.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
using Rubberduck.Parsing.Inspections.Resources;
1414
using Rubberduck.Parsing.UIContext;
1515
using Rubberduck.UI.Command;
16+
using Rubberduck.VBEditor.ComManagement;
1617
using Rubberduck.VBEditor.SafeComWrappers.Abstract;
1718
using Rubberduck.VersionCheck;
1819
using Application = System.Windows.Forms.Application;
@@ -50,7 +51,7 @@ public App(IVBE vbe,
5051
_configService.SettingsChanged += _configService_SettingsChanged;
5152

5253
UiDispatcher.Initialize();
53-
UiSynchronizer.Initialize();
54+
ComMessagePumper.Initialize();
5455
}
5556

5657
private void _configService_SettingsChanged(object sender, ConfigurationChangedEventArgs e)

0 commit comments

Comments
 (0)