Skip to content

Commit

Permalink
Fixed renaming of labels
Browse files Browse the repository at this point in the history
Issue: #4310
  • Loading branch information
buchen committed Dec 22, 2024
1 parent f541d25 commit 6a9b71e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ private void addPurchaseCostColumns()

// cost value per share - FIFO
Column column = new Column("7", Messages.ColumnPurchasePrice, SWT.RIGHT, 60); //$NON-NLS-1$
column.setHeading(Messages.LabelFeesAndTaxesNotIncluded);
column.setHeading(Messages.LabelTaxesAndFeesNotIncluded);
column.setGroupLabel(Messages.LabelPurchasePrice);
column.setMenuLabel(Messages.ColumnPurchasePrice_MenuLabel);
column.setDescription(Messages.ColumnPurchasePrice_Description);
Expand All @@ -642,7 +642,7 @@ private void addPurchaseCostColumns()

// cost value per share including fees and taxes - FIFO
column = new Column("grossPurchasePriceFIFO", Messages.ColumnGrossPurchasePriceFIFO, SWT.RIGHT, 60); //$NON-NLS-1$
column.setHeading(Messages.LabelFeesAndTaxesIncluded);
column.setHeading(Messages.LabelTaxesAndFeesIncluded);
column.setGroupLabel(Messages.LabelPurchasePrice);
column.setMenuLabel(Messages.ColumnPurchasePrice_MenuLabel);
column.setDescription(Messages.ColumnGrossPurchasePriceFIFO_Description);
Expand Down

0 comments on commit 6a9b71e

Please sign in to comment.