diff options
Diffstat (limited to 'filters/kspread/html')
-rw-r--r-- | filters/kspread/html/htmlexport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/kspread/html/htmlexport.cpp b/filters/kspread/html/htmlexport.cpp index 68f4081cf..17d5484e4 100644 --- a/filters/kspread/html/htmlexport.cpp +++ b/filters/kspread/html/htmlexport.cpp @@ -288,7 +288,7 @@ void HTMLExport::convertSheet( Sheet *sheet, TQString &str, int iMaxUsedRow, int text = cell->text(); // untested break; case Cell::Formula: - cell->calc( TRUE ); // Incredible, cells are not calculated if the document was just opened + cell->calc( true ); // Incredible, cells are not calculated if the document was just opened text = cell->valueString(); break; } |