fixed a typo and a declaration

This commit is contained in:
Patrizio Bekerle 2018-03-06 17:16:08 +01:00
parent 21cc381bdd
commit 1fe188b72e
No known key found for this signature in database
GPG Key ID: 2E9FFD770DABE838
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import QtQml 2.0
* This script is just an example of how to use scripts * This script is just an example of how to use scripts
* Visit http://docs.qownnotes.org/ for more information about scripting * Visit http://docs.qownnotes.org/ for more information about scripting
*/ */
QtObject { Script {
/** /**
* Just show some log entries when the script is initialized * Just show some log entries when the script is initialized
*/ */

View File

@ -37,7 +37,7 @@ Script {
return; return;
} }
// start the diff programm with the selected note paths as parameters // start the diff program with the selected note paths as parameters
var params = script.selectedNotesPaths(); var params = script.selectedNotesPaths();
script.startDetachedProcess(executablePath, params); script.startDetachedProcess(executablePath, params);
} }