Skip to content

Commit

Permalink
Fixed JabRef#856: Clicking on browse for manual OpenOffice does now work
Browse files Browse the repository at this point in the history
Fixed JabRef#815: Curly braces in OO/LO citation no longer ignored
- Code cleanup: Replaced ActionListener with Lamdbas
  • Loading branch information
Siedlerchr committed Feb 26, 2016
1 parent c57e8ac commit 65dafb2
Show file tree
Hide file tree
Showing 3 changed files with 154 additions and 207 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ to [sourceforge feature requests](https://sourceforge.net/p/jabref/features/) by
- Fixed [#803](https://github.com/JabRef/jabref/issues/803): Fixed dynamically group, free-form search
- Fixed [#743](https://github.com/JabRef/jabref/issues/743): Logger not configured when JAR is started
- Fixed [#822](https://github.com/JabRef/jabref/issues/822):OSX - Exception when adding the icon to the dock

- Fixed [#685](https://github.com/JabRef/jabref/issues/685): Fixed MySQL exporting for more than one entry
- Fixed [#815](https://github.com/JabRef/jabref/issues/815): Curly Braces no longer ignored in OpenOffice/LibreOffice citation
- Fixed [#855](https://github.com/JabRef/jabref/issues/856): Fixed OpenOffice Manual connect - Clicking on browse does now work correctly

### Removed
- Fixed [#627](https://github.com/JabRef/jabref/issues/627): The pdf field is removed from the export formats, use the file field
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/net/sf/jabref/openoffice/OOPreFormatter.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ public String format(String field) {
escaped = true;
incommand = true;
currentCommand = new StringBuilder();
} else if (!incommand && ((c == '{') || (c == '}'))) {
// Swallow the brace.
} else if (Character.isLetter(c) || (c == '%')
|| Globals.SPECIAL_COMMAND_CHARS.contains(String.valueOf(c))) {
escaped = false;
Expand Down
Loading

0 comments on commit 65dafb2

Please sign in to comment.