summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-05-22 14:29:30 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-05-22 14:29:30 +0200
commitd0c1b9bcbffdfa414e722cd716098de409884746 (patch)
treeff555962b46ef9286b7fe0e6919f9123d6d085e9 /src/mainwindow.cpp
parentFullScreen shortcuts: F11 && CTRL + SHIFT + F (diff)
downloadrekonq-d0c1b9bcbffdfa414e722cd716098de409884746.tar.xz
Removed QDialog instances
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 3ebd3742..4f41652e 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -572,7 +572,7 @@ void MainWindow::printRequested(QWebFrame *frame)
QPrinter printer;
QPointer<QPrintDialog> dialog = KdePrint::createPrintDialog(&printer, this);
- if (dialog->exec() == QDialog::Accepted)
+ if (dialog->exec() == KDialog::Ok)
{
frame->print(&printer);
}