Skip to content

Commit 4671ba3

Browse files
committed
Better name for the ITempSourceFileHandler` on the VB6 side
1 parent 1c2846f commit 4671ba3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Rubberduck.VBEditor.VB6/TempSourceFileHandler.cs renamed to Rubberduck.VBEditor.VB6/ExternalFileTempSourceFileHandlerEmulator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace Rubberduck.VBEditor.VB6
77
{
8-
public class TempSourceFileHandler : ITempSourceFileHandler
8+
public class ExternalFileTempSourceFileHandlerEmulator : ITempSourceFileHandler
99
{
1010
public string Export(IVBComponent component)
1111
{

Rubberduck.VBEditor.VB6/SafeComWrappers/VB/VBE.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class VBE : SafeComWrapper<VB.VBE>, IVBE
1717
public VBE(VB.VBE target, bool rewrapping = false)
1818
: base(target, rewrapping)
1919
{
20-
TempSourceFileHandler = new TempSourceFileHandler();
20+
TempSourceFileHandler = new ExternalFileTempSourceFileHandlerEmulator();
2121
}
2222

2323
public VBEKind Kind => VBEKind.Standalone;

0 commit comments

Comments
 (0)