diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-08 14:45:14 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-08 14:45:14 +0300 |
commit | dc1fc8b221e9324fe0f82c4ea4a32d87d282bd25 (patch) | |
tree | fc5f6700861396f267b063be4412d1778c8f1227 /Source/Ribbon | |
parent | 8a869e73fb1873b1f85203b7a4a18dc8a2325a11 (diff) |
refactoring namespaces
Diffstat (limited to 'Source/Ribbon')
-rw-r--r-- | Source/Ribbon/RibbonController.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Ribbon/RibbonController.cs b/Source/Ribbon/RibbonController.cs index c4ca6d7..7402a09 100644 --- a/Source/Ribbon/RibbonController.cs +++ b/Source/Ribbon/RibbonController.cs @@ -1,9 +1,9 @@ using System.Runtime.InteropServices; using System.Windows.Forms; using ExcelDna.Integration.CustomUI; -using RehauSku.Assist; +using RehauSku.DataExport; -namespace Ribbon +namespace RehauSku.Ribbon { [ComVisible(true)] public class RibbonController : ExcelRibbon @@ -26,7 +26,7 @@ namespace Ribbon public void OnButtonPressed(IRibbonControl control) { - using (DataWriter dw = new DataWriter()) + using (Exporter dw = new Exporter()) { if (!dw.IsRangeValid()) { |