Skip to content

Commit

Permalink
Updates (#61)
Browse files Browse the repository at this point in the history
* updates

* Chagns to files

* Call Close with wdDoNotSaveChanges to prevent saveas dialog popping up.

* rename test doc

* update version

* wdDoNotSaveChangesQqw

* type
  • Loading branch information
tobya authored May 18, 2018
1 parent a54e72d commit fe9e1ef
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ Excel version available - [Details here](xlsTo.md)
1. Single File Conversion
1. Multiple / Directory File Conversion
1. Delete after conversion
1. Fire Webhook one each conversion.
1. Fire Webhook on each conversion.


## Bugs and Features

Expand Down
2 changes: 1 addition & 1 deletion src/MainUtils.pas
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface
ERRORS = 1;
SILENT = 0;

DOCTO_VERSION = '0.8.13';
DOCTO_VERSION = '0.8.15';

type

Expand Down
8 changes: 5 additions & 3 deletions src/WordUtils.pas
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ interface


const
wdDoNotSaveChanges = 0; // Do not save pending changes.
wdSaveChanges = -1;// Save pending changes automatically without prompting the user.
wdPromptToSaveChanges = -2; //Prompt the user to save pending changes.

wdDoNotSaveChanges = 0; // Do not save pending changes.
wdSaveChanges = -1; // Save pending changes automatically without prompting the user.
wdPromptToSaveChanges = -2; // Prompt the user to save pending changes.




Expand Down
Binary file modified src/XlsTo.res
Binary file not shown.

0 comments on commit fe9e1ef

Please sign in to comment.