diff options
author | Laurent Charrière <lcharriere@gmail.com> | 2015-01-13 10:54:02 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-01-14 19:55:47 +0000 |
commit | ed20e81a886a13125a551ce24b6f9408d61e8e61 (patch) | |
tree | 65e5a5f7f9e1be9a0e60ea76b776bac113e4058a /include/formula | |
parent | ed6c797d07f6e7f1afdb272046f9a02b973f97de (diff) |
fd0#85818: rename SC_OPCODE_NBW to SC_OPCODE_NPV
Change-Id: I1f7b51094acf0baf79160f65fdec67c9934930aa
Reviewed-on: https://gerrit.libreoffice.org/13897
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'include/formula')
-rw-r--r-- | include/formula/compiler.hrc | 2 | ||||
-rw-r--r-- | include/formula/opcode.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc index 7cd6653a6ec9..2d2dd3692c1d 100644 --- a/include/formula/compiler.hrc +++ b/include/formula/compiler.hrc @@ -227,7 +227,7 @@ #define SC_OPCODE_AVERAGE 226 #define SC_OPCODE_COUNT 227 #define SC_OPCODE_COUNT_2 228 -#define SC_OPCODE_NBW 229 +#define SC_OPCODE_NPV 229 #define SC_OPCODE_IRR 230 #define SC_OPCODE_VAR 231 #define SC_OPCODE_VAR_P 232 diff --git a/include/formula/opcode.hxx b/include/formula/opcode.hxx index 43f24677073f..a282dae5be99 100644 --- a/include/formula/opcode.hxx +++ b/include/formula/opcode.hxx @@ -220,7 +220,7 @@ enum OpCode : sal_uInt16 ocAverage = SC_OPCODE_AVERAGE, ocCount = SC_OPCODE_COUNT, ocCount2 = SC_OPCODE_COUNT_2, - ocNPV = SC_OPCODE_NBW, + ocNPV = SC_OPCODE_NPV, ocIRR = SC_OPCODE_IRR, ocMIRR = SC_OPCODE_MIRR, ocISPMT = SC_OPCODE_ISPMT, |