diff options
Diffstat (limited to 'kspread/manipulator_data.cc')
-rw-r--r-- | kspread/manipulator_data.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kspread/manipulator_data.cc b/kspread/manipulator_data.cc index 827c610a..5b829de3 100644 --- a/kspread/manipulator_data.cc +++ b/kspread/manipulator_data.cc @@ -48,7 +48,7 @@ bool AbstractDataManipulator::process (Element* element) FormatType fmtType = No_format; if (m_reverse) { // reverse - use the stored value - if (oldData.tqcontains (col) && oldData[col].tqcontains (row)) { + if (oldData.contains (col) && oldData[col].contains (row)) { val = oldData[col][row].val; text = oldData[col][row].text; fmtType = oldData[col][row].format; |