Fixed a bunch of things.

This commit is contained in:
Ernie Pasveer
2025-03-30 14:29:20 -05:00
parent b12e9d25b1
commit 81a09d3bb4
13 changed files with 451 additions and 29 deletions
+2 -3
View File
@@ -408,13 +408,12 @@ void SeerMemoryVisualizerWidget::handlePrintButton () {
QPrinter printer;
QPrintDialog* dlg = new QPrintDialog(&printer, this);
QPrintDialog dialog(&printer, this);
if (dlg->exec() != QDialog::Accepted) {
if (dialog.exec() != QDialog::Accepted) {
return;
}
// Make a copy so we can temporarily add a header.
QTextDocument* clone = 0;