Skip to content

Commit

Permalink
Merge pull request #15 from Mendeley/MD-21076-carles-fix_const_name
Browse files Browse the repository at this point in the history
Md 21076 carles fix const name
  • Loading branch information
cpina committed Jan 19, 2015
2 parents 4975fdd + f7634b5 commit 823f99b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ and generated a bibliography automatically.

## Build prerequisites:

* Perl
* Python
* 7za (Windows) or zip (Linux or OSX)

## Building the extension:

1. Open a command prompt within the directory containing `buildScript.pl`
2. Run `buildScript.pl <version> <debug mode>`
1. Open a command prompt within the directory containing `build.py`
2. Run `build.py <version> <debug mode>`
* `<version>`: Version number to use for this plugin build.
* `<debug mode>`: Boolean which specifies whether the debugger should be enabled in OpenOffice.

e.g. Run `buildScript.pl 1.5 true` to make version *1.5* as a *debug build*
e.g. Run `build.py 1.5 true` to make version *1.5* as a *debug build*

(Note: Debug builds don't use custom error handling code, but instead OpenOffice/LibreOffice will open the debugger)

Expand Down
2 changes: 1 addition & 1 deletion src/mendeleyLib.vb
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ Function isDocumentLinkedToCurrentUser() As Boolean
' ask user if they want to link the document to their account
result = MsgBox("This document has been edited by another Mendeley user: " + thisDocumentUser + vbCrLf + vbCrLf + _
"Do you wish to enable the Mendeley plugin to edit the citations and bibliography yourself?" + vbCrLf + vbCrLf, _
MSGBOX_BUTTONS_YES_NO, "Enable Mendeley plugin for this document?")
MSGBOX_TYPE_YES_NO, "Enable Mendeley plugin for this document?")
End If

If result = MSGBOX_RESULT_YES Then
Expand Down

0 comments on commit 823f99b

Please sign in to comment.