diff options
author | gregory guy <[email protected]> | 2020-08-02 12:52:08 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-08-02 12:52:08 +0200 |
commit | 22dc790ecaa629fe1227789635dfa00813f85287 (patch) | |
tree | 7fbcb8d09323a47af5f16d7f1a11a67ee524f091 | |
parent | a780ede14ba8d44d53777270b15996c11152c387 (diff) | |
download | mathemagics-22dc790ecaa629fe1227789635dfa00813f85287.tar.gz mathemagics-22dc790ecaa629fe1227789635dfa00813f85287.zip |
Fix "Compound Interest" command.
Signed-off-by: gregory guy <[email protected]>
-rw-r--r-- | mathemagics/formulae | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mathemagics/formulae b/mathemagics/formulae index d15600e..4e0b493 100644 --- a/mathemagics/formulae +++ b/mathemagics/formulae @@ -1,4 +1,4 @@ -QString formName = i18n("Compound Interest"); +TQString formName = i18n("Compound Interest"); defaultFormulae.append(formName); formulas[formName] = "4 reqargs 3 rolld dup 3 rolld / 1 + 3 rolld * ^ *"; help[formName] = i18n("Arguments: Principal, interest rate (like .04 for 4%), compoundings per year, and number of years"); |