diff options
Diffstat (limited to 'demos/spreadsheet/spreadsheet.cpp')
-rw-r--r-- | demos/spreadsheet/spreadsheet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/spreadsheet/spreadsheet.cpp b/demos/spreadsheet/spreadsheet.cpp index 0449a91..7f057a2 100644 --- a/demos/spreadsheet/spreadsheet.cpp +++ b/demos/spreadsheet/spreadsheet.cpp @@ -420,7 +420,7 @@ void SpreadSheet::actionMath_helper(const QString &title, const QString &op) &cell1, &cell2, &out)) { int row, col; decode_pos(out, &row, &col); - table->item(row, col)->setText(tr("%1, %2, %3").arg(op, cell1, cell2)); + table->item(row, col)->setText(tr("%1 %2 %3").arg(op, cell1, cell2)); } } |