diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-01-28 16:19:39 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-01-28 16:19:39 +0300 |
commit | 42c06d00e3720b8ac263d3e76c6d4fb724dca970 (patch) | |
tree | 2b3ba49fd956538e41f0cb86b5d0ba7496ed3dd6 /src/Ribbon | |
parent | 2b3937ac2f1832ef89d28565c43464397384b571 (diff) |
Move GetSourceFiles to Source class
Diffstat (limited to 'src/Ribbon')
-rw-r--r-- | src/Ribbon/RibbonController.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Ribbon/RibbonController.cs b/src/Ribbon/RibbonController.cs index d78c6df..9011a43 100644 --- a/src/Ribbon/RibbonController.cs +++ b/src/Ribbon/RibbonController.cs @@ -42,7 +42,7 @@ namespace RehauSku.Ribbon if (files.Length != 0) { - mergeTool.SourceFiles = SourceUtil.GetSourceLists(files); + mergeTool.SourceFiles = Source.GetSourceLists(files); mergeTool.OpenNewPrice(); mergeTool.FillTarget(); } @@ -55,7 +55,7 @@ namespace RehauSku.Ribbon if (files.Length != 0) { - combineTool.SourceFiles = SourceUtil.GetSourceLists(files); + combineTool.SourceFiles = Source.GetSourceLists(files); combineTool.OpenNewPrice(); combineTool.FillTarget(); } |