| 248 | } |
| 249 | |
| 250 | void ResultsView::print() |
| 251 | { |
| 252 | QPrinter printer; |
| 253 | QPrintDialog dialog(&printer, this); |
| 254 | dialog.setWindowTitle(tr("Print Report")); |
| 255 | if (dialog.exec() != QDialog::Accepted) |
| 256 | return; |
| 257 | |
| 258 | print(&printer); |
| 259 | } |
| 260 | |
| 261 | void ResultsView::printPreview() |
| 262 | { |