diff options
Diffstat (limited to 'kspread/plugins/calculator')
-rw-r--r-- | kspread/plugins/calculator/kcalc_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kspread/plugins/calculator/kcalc_core.cpp b/kspread/plugins/calculator/kcalc_core.cpp index e82e56c9..7a6f8209 100644 --- a/kspread/plugins/calculator/kcalc_core.cpp +++ b/kspread/plugins/calculator/kcalc_core.cpp @@ -575,7 +575,7 @@ void TQtCalculator::EnterNegate() TQString string; string = display_str; int pos; - pos = string.tqfindRev('e',-1,false); + pos = string.findRev('e',-1,false); if(pos == -1) return; |