From b2a82d9bb256516ac589350579b90f43b68bd452 Mon Sep 17 00:00:00 2001 From: Keigo Kawamura <2448848492@mail.ecc.u-tokyo.ac.jp> Date: Mon, 16 Nov 2015 20:39:06 +0900 Subject: tdf#95878 made more useful function suggestion system in formula editing I made function list suggestion and description tip in libreoffice calc. This change give us a nice function suggestion and easy function input. For example if I write "=i" then calc suggests "[if], iferror, ifna, and 50 more". You should only choice the function you would write with Ctrl-Tab and Ctrl-Shift-Tab, and then type Enter. Also there is a description of suggesting function, so even if you do not know the true name of the function you want to write, you can find the function. This change also give us a description of arguments of selected function. If I write "=i" and push enter key, then calc show "=if()" and a description of arguments of function "if()". Change-Id: Icd5ad04ea092fa39f27bb2776fd9e93649896baf Reviewed-on: https://gerrit.libreoffice.org/20035 Reviewed-by: Eike Rathke Tested-by: Eike Rathke --- sc/inc/globstr.hrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sc/inc/globstr.hrc') diff --git a/sc/inc/globstr.hrc b/sc/inc/globstr.hrc index 35223879c84f..5fa3e4080d3c 100644 --- a/sc/inc/globstr.hrc +++ b/sc/inc/globstr.hrc @@ -703,7 +703,10 @@ #define STR_TABLE_COUNT 530 -#define SC_GLOBSTR_STR_COUNT 531 /**< the count of permanently resident strings */ +#define STR_FUNCTIONS_FOUND 531 +#define STR_FUNCTIONS_NAMEDESCS 532 + +#define SC_GLOBSTR_STR_COUNT 533 /**< the count of permanently resident strings */ #endif -- cgit