Skip to content

Commit

Permalink
fix checkstyle and l10n issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed Dec 23, 2018
1 parent 6244c49 commit ab41334
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</toggleGroup>
</RadioButton>
<RadioButton fx:id="inText" minWidth="-Infinity" mnemonicParsing="false" text="%Cite selected entries with in-text citation" toggleGroup="$citeToggleGroup" />
<Label minWidth="-Infinity" text="%Extra information (e.g. page number) " />
<Label minWidth="-Infinity" text="%Extra information (e.g. page number)" />
<TextField fx:id="pageInfo" />
</children>
</VBox>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@

public class ManageCitationsDialogView extends BaseDialog<Void> {

@FXML private TableView<CitationEntryViewModel> citationsTableView;
@FXML private TableColumn<CitationEntryViewModel, String> citation;
@FXML private TableColumn<CitationEntryViewModel, String> extraInfo;

private static final String HTML_BOLD_END_TAG = "</b>";
private static final String HTML_BOLD_START_TAG = "<b>";

private final DialogService dialogService;
private final OOBibBase ooBase;

@FXML private TableView<CitationEntryViewModel> citationsTableView;
@FXML private TableColumn<CitationEntryViewModel, String> citation;
@FXML private TableColumn<CitationEntryViewModel, String> extraInfo;


private ManageCitationsDialogViewModel viewModel;

public ManageCitationsDialogView(OOBibBase ooBase, DialogService dialogService) {
Expand Down

0 comments on commit ab41334

Please sign in to comment.