! \overload Write a QTime \a t to the cell \a row_column with the \a format. Returns true on success. */
| 949 | Returns true on success. |
| 950 | */ |
| 951 | bool Worksheet::writeTime(const CellReference &row_column, const QTime &t, const Format &format) |
| 952 | { |
| 953 | if (!row_column.isValid()) |
| 954 | return false; |
| 955 | |
| 956 | return writeTime(row_column.row(), row_column.column(), t, format); |
| 957 | } |
| 958 | |
| 959 | /*! |
| 960 | Write a QTime \a t to the cell (\a row, \a column) with the \a format. |
nothing calls this directly
no test coverage detected