From 22dc790ecaa629fe1227789635dfa00813f85287 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Sun, 2 Aug 2020 12:52:08 +0200 Subject: [PATCH] Fix "Compound Interest" command. Signed-off-by: gregory guy --- mathemagics/formulae | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");