! \overload Write a QDateTime \a dt to the cell \a row_column with the \a format. Returns true on success. */
| 884 | Returns true on success. |
| 885 | */ |
| 886 | bool Worksheet::writeDateTime(const CellReference &row_column, const QDateTime &dt, const Format &format) |
| 887 | { |
| 888 | if (!row_column.isValid()) |
| 889 | return false; |
| 890 | |
| 891 | return writeDateTime(row_column.row(), row_column.column(), dt, format); |
| 892 | } |
| 893 | |
| 894 | /*! |
| 895 | Write a QDateTime \a dt to the cell (\a row, \a column) with the \a format. |
nothing calls this directly
no test coverage detected