diff options
Diffstat (limited to 'Source/DataExport/Exporter.cs')
-rw-r--r-- | Source/DataExport/Exporter.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/DataExport/Exporter.cs b/Source/DataExport/Exporter.cs index 5a691b7..cc7621e 100644 --- a/Source/DataExport/Exporter.cs +++ b/Source/DataExport/Exporter.cs @@ -76,7 +76,7 @@ namespace RehauSku.DataExport public void FillPriceList() { string exportFile = _GetExportFullPath(); - File.Copy(AddIn.priceListPath, exportFile, true); + File.Copy(AddIn.PriceListPath, exportFile, true); Workbook wb = xlApp.Workbooks.Open(exportFile); Worksheet ws = wb.ActiveSheet; @@ -94,7 +94,7 @@ namespace RehauSku.DataExport private string _GetExportFullPath() { - string fileExtension = Path.GetExtension(AddIn.priceListPath); + string fileExtension = Path.GetExtension(AddIn.PriceListPath); return Path.GetTempFileName() + fileExtension; } |